• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(SyntaxTests
6  TreeTestBase.cpp
7  BuildTreeTest.cpp
8  MutationsTest.cpp
9  SynthesisTest.cpp
10  TreeTest.cpp
11  TokensTest.cpp
12)
13
14clang_target_link_libraries(SyntaxTests
15  PRIVATE
16  clangAST
17  clangBasic
18  clangFrontend
19  clangLex
20  clangSerialization
21  clangTesting
22  clangTooling
23  clangToolingCore
24  clangToolingSyntax
25  )
26
27target_link_libraries(SyntaxTests
28  PRIVATE
29  LLVMTestingSupport
30)
31