1set(LLVM_LINK_COMPONENTS 2 ${LLVM_TARGETS_TO_BUILD} 3 asmparser 4 support 5 mc 6 ) 7 8add_clang_unittest(ToolingTests 9 CommentHandlerTest.cpp 10 CompilationDatabaseTest.cpp 11 ToolingTest.cpp 12 RecursiveASTVisitorTest.cpp 13 RefactoringTest.cpp 14 RewriterTest.cpp 15 RefactoringCallbacksTest.cpp 16 ) 17 18target_link_libraries(ToolingTests 19 clangAST 20 clangTooling 21 clangRewriteCore 22 ) 23