repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
unittests
/
Tooling
/
Syntax
/
CMakeLists.txt
blob
33b06a05891cb84c91d36d57accfe9552507c90e
1
set(LLVM_LINK_COMPONENTS
2
Support
3
)
4
5
add_clang_unittest(SyntaxTests
6
TreeTestBase.cpp
7
BuildTreeTest.cpp
8
MutationsTest.cpp
9
SynthesisTest.cpp
10
TreeTest.cpp
11
TokensTest.cpp
12
)
13
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
)
25
26
target_link_libraries(SyntaxTests
27
PRIVATE
28
clangTesting
29
LLVMTestingSupport
30
)