diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-12-20 15:43:53 +0100 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-20 15:43:53 +0100 |
| commit | a9c845395f827055b951532451df1ea50184c21d (patch) | |
| tree | 946b46ac7d2a110c44cc1dbc3b6360f3bed1ee72 | |
| parent | ede8293d7d9d4623be5a911cc076c1dfd7810b8c (diff) | |
| download | bcm5719-llvm-a9c845395f827055b951532451df1ea50184c21d.tar.gz bcm5719-llvm-a9c845395f827055b951532451df1ea50184c21d.zip | |
[lldb] Put the headers in unittests/TestingSupport/ into modules
| -rw-r--r-- | lldb/unittests/TestingSupport/module.modulemap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/unittests/TestingSupport/module.modulemap b/lldb/unittests/TestingSupport/module.modulemap new file mode 100644 index 00000000000..542c0b11c78 --- /dev/null +++ b/lldb/unittests/TestingSupport/module.modulemap @@ -0,0 +1,11 @@ + +module lldb_TestingSupport { + requires cplusplus + module TestUtilities { header "TestUtilities.h" export * } + module MockTildeExpressionResolver { header "MockTildeExpressionResolver.h" export * } +} + +module lldb_TestingSupport_Host { + requires cplusplus + module NativeProcessTestUtils { header "Host/NativeProcessTestUtils.h" export * } +} |

