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
[SCCP] Avoid modifying AdditionalUsers while iterating over it
[llvm-project.git]
/
clang
/
unittests
/
Tooling
/
Syntax
/
CMakeLists.txt
blob
174f3e7bf57321b6c6e75ba9c3f37703b41a62d7
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
clangTesting
22
clangTooling
23
clangToolingCore
24
clangToolingSyntax
25
)
26
27
target_link_libraries(SyntaxTests
28
PRIVATE
29
LLVMTestingSupport
30
)