mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 14:06:53 +00:00

The modules build trips over this frequently because there is no textual include of the tablegen output, but the module includes it. Differential revision: https://reviews.llvm.org/D157119
22 lines
278 B
CMake
22 lines
278 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_tool(pp-trace
|
|
PPTrace.cpp
|
|
PPCallbacksTracker.cpp
|
|
|
|
DEPENDS
|
|
ClangDriverOptions
|
|
)
|
|
|
|
clang_target_link_libraries(pp-trace
|
|
PRIVATE
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
clangLex
|
|
clangSerialization
|
|
clangTooling
|
|
)
|