[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / unittests / Tooling / Syntax / CMakeLists.txt
blob33b06a05891cb84c91d36d57accfe9552507c90e
1 set(LLVM_LINK_COMPONENTS
2   Support
3   )
5 add_clang_unittest(SyntaxTests
6   TreeTestBase.cpp
7   BuildTreeTest.cpp
8   MutationsTest.cpp
9   SynthesisTest.cpp
10   TreeTest.cpp
11   TokensTest.cpp
14 clang_target_link_libraries(SyntaxTests
15   PRIVATE
16   clangAST
17   clangBasic
18   clangFrontend
19   clangLex
20   clangSerialization
21   clangTooling
22   clangToolingCore
23   clangToolingSyntax
24   )
26 target_link_libraries(SyntaxTests
27   PRIVATE
28   clangTesting
29   LLVMTestingSupport