Home | History | Annotate | Download | only in Tooling
      1 set(LLVM_LINK_COMPONENTS
      2   ${LLVM_TARGETS_TO_BUILD}
      3   Support
      4   )
      5 
      6 add_clang_unittest(ToolingTests
      7   CommentHandlerTest.cpp
      8   CompilationDatabaseTest.cpp
      9   LookupTest.cpp
     10   ToolingTest.cpp
     11   RecursiveASTVisitorTest.cpp
     12   RecursiveASTVisitorTestCallVisitor.cpp
     13   RecursiveASTVisitorTestDeclVisitor.cpp
     14   RecursiveASTVisitorTestExprVisitor.cpp
     15   RecursiveASTVisitorTestTypeLocVisitor.cpp
     16   RefactoringTest.cpp
     17   RewriterTest.cpp
     18   RefactoringCallbacksTest.cpp
     19   ReplacementsYamlTest.cpp
     20   )
     21 
     22 target_link_libraries(ToolingTests
     23   clangAST
     24   clangASTMatchers
     25   clangBasic
     26   clangFrontend
     27   clangLex
     28   clangRewrite
     29   clangTooling
     30   clangToolingCore
     31   )
     32