The name `module.modulemap` is convention. > Clang will also search for a file named `module.map`. This behavior is deprecated and > we plan to eventually remove it.
10 lines
103 B
Plaintext
10 lines
103 B
Plaintext
module myModule {
|
|
header "myModule.h"
|
|
export *
|
|
}
|
|
|
|
module minmax {
|
|
header "minmax.h"
|
|
export *
|
|
}
|