• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(ToolingTests
6  CommentHandlerTest.cpp
7  CompilationDatabaseTest.cpp
8  ToolingTest.cpp
9  RecursiveASTVisitorTest.cpp
10  RecursiveASTVisitorTestCallVisitor.cpp
11  RecursiveASTVisitorTestDeclVisitor.cpp
12  RecursiveASTVisitorTestExprVisitor.cpp
13  RecursiveASTVisitorTestTypeLocVisitor.cpp
14  RefactoringTest.cpp
15  RewriterTest.cpp
16  RefactoringCallbacksTest.cpp
17  ReplacementsYamlTest.cpp
18  )
19
20target_link_libraries(ToolingTests
21  clangAST
22  clangASTMatchers
23  clangBasic
24  clangFrontend
25  clangLex
26  clangRewrite
27  clangTooling
28  clangToolingCore
29  )
30