Files
clang-p2996/clang/lib/Tooling/Inclusions/CMakeLists.txt
Kirill Bobyrev e3ba831937 [clang] Fix the tooling build after D119130
New StandardLibrary.cpp depends on Clang AST, add the dependency to
CMakeLists.txt

Broken builbot: https://lab.llvm.org/buildbot/#/builders/57/builds/14892
2022-02-09 11:52:03 +01:00

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
)