diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap b/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap new file mode 100644 index 0000000000000..2f05073a0b857 --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap @@ -0,0 +1,11 @@ +module A { + header "a.h" +} + +module B { + header "b.h" +} + +module std { + header "memory.h" +} |