New StandardLibrary.cpp depends on Clang AST, add the dependency to CMakeLists.txt Broken builbot: https://lab.llvm.org/buildbot/#/builders/57/builds/14892
15 lines
224 B
CMake
15 lines
224 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangToolingInclusions
|
|
HeaderIncludes.cpp
|
|
IncludeStyle.cpp
|
|
StandardLibrary.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangLex
|
|
clangRewrite
|
|
clangToolingCore
|
|
)
|