diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap b/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap new file mode 100644 index 00000000000..2f05073a0b8 --- /dev/null +++ b/lldb/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" +} |