25 lines
367 B
CMake
25 lines
367 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
Option
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
add_clang_tool(clang-refactor
|
||
|
ClangRefactor.cpp
|
||
|
TestSupport.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(clang-refactor
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangBasic
|
||
|
clangFormat
|
||
|
clangFrontend
|
||
|
clangLex
|
||
|
clangRewrite
|
||
|
clangTooling
|
||
|
clangToolingCore
|
||
|
clangToolingRefactor
|
||
|
)
|
||
|
|
||
|
install(TARGETS clang-refactor RUNTIME DESTINATION bin)
|