llvm-project/clang-tools-extra/clang-apply-replacements/CMakeLists.txt

20 lines
324 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangApplyReplacements
lib/Tooling/ApplyReplacements.cpp
)
target_link_libraries(clangApplyReplacements
clangTooling
clangBasic
clangRewriteFrontend
clangFormat
)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
include
)
add_subdirectory(tool)