diff options
Diffstat (limited to 'unittests/Tooling/CMakeLists.txt')
-rw-r--r-- | unittests/Tooling/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unittests/Tooling/CMakeLists.txt b/unittests/Tooling/CMakeLists.txt new file mode 100644 index 0000000..4eaf339 --- /dev/null +++ b/unittests/Tooling/CMakeLists.txt @@ -0,0 +1,22 @@ +set(LLVM_LINK_COMPONENTS + ${LLVM_TARGETS_TO_BUILD} + asmparser + support + mc + ) + +add_clang_unittest(ToolingTests + CommentHandlerTest.cpp + CompilationDatabaseTest.cpp + ToolingTest.cpp + RecursiveASTVisitorTest.cpp + RefactoringTest.cpp + RewriterTest.cpp + RefactoringCallbacksTest.cpp + ) + +target_link_libraries(ToolingTests + clangAST + clangTooling + clangRewrite + ) |