This reverts commit 049f4e4eab19c6e468e029232e94ca71245b0f56. The problem was a stray dependency in CLANG_TEST_DEPS which caused cmake to fail if clang-pseudo wasn't built. This is now removed.
22 lines
290 B
CMake
22 lines
290 B
CMake
set(LLVM_LINK_COMPONENTS Support)
|
|
|
|
add_clang_library(clangToolingSyntax
|
|
BuildTree.cpp
|
|
ComputeReplacements.cpp
|
|
Nodes.cpp
|
|
Mutations.cpp
|
|
Synthesis.cpp
|
|
Tokens.cpp
|
|
Tree.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
clangLex
|
|
clangToolingCore
|
|
|
|
DEPENDS
|
|
omp_gen
|
|
)
|