diff options
Diffstat (limited to 'test/Modules/Inputs/require-modular-includes/module.modulemap')
-rw-r--r-- | test/Modules/Inputs/require-modular-includes/module.modulemap | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Modules/Inputs/require-modular-includes/module.modulemap b/test/Modules/Inputs/require-modular-includes/module.modulemap new file mode 100644 index 0000000..0ac4d5b --- /dev/null +++ b/test/Modules/Inputs/require-modular-includes/module.modulemap @@ -0,0 +1,12 @@ +module AnotherModule { + header "AnotherModule.h" + exclude header "AnotherModuleExcluded.h" +} +module Umbrella { + umbrella "umbrella" +} +module NotFramework { + header "NotFramework.h" +} + +framework module * { } |