mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00
24 lines
357 B
CMake
24 lines
357 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangRewriteFrontend
|
|
FixItRewriter.cpp
|
|
FrontendActions.cpp
|
|
HTMLPrint.cpp
|
|
InclusionRewriter.cpp
|
|
RewriteMacros.cpp
|
|
RewriteModernObjC.cpp
|
|
RewriteObjC.cpp
|
|
RewriteTest.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangEdit
|
|
clangFrontend
|
|
clangLex
|
|
clangRewrite
|
|
clangSerialization
|
|
)
|