diff options
Diffstat (limited to 'unittests/CrossTU/CMakeLists.txt')
-rw-r--r-- | unittests/CrossTU/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/unittests/CrossTU/CMakeLists.txt b/unittests/CrossTU/CMakeLists.txt new file mode 100644 index 000000000000..652d91612fb4 --- /dev/null +++ b/unittests/CrossTU/CMakeLists.txt @@ -0,0 +1,17 @@ +set(LLVM_LINK_COMPONENTS + ${LLVM_TARGETS_TO_BUILD} + Support + ) + +add_clang_unittest(CrossTUTests + CrossTranslationUnitTest.cpp + ) + +target_link_libraries(CrossTUTests + PRIVATE + clangAST + clangBasic + clangCrossTU + clangFrontend + clangTooling + ) |