brintos

brintos / llvm-project-archived public Read only

0
0
Text · 397 B · 551ded9 Raw
26 lines · plain
1set(LLVM_LINK_COMPONENTS2  Support3  )4 5add_clang_library(clangApplyReplacements STATIC6  lib/Tooling/ApplyReplacements.cpp7 8  DEPENDS9  ClangDriverOptions10)11 12clang_target_link_libraries(clangApplyReplacements13  PRIVATE14  clangAST15  clangBasic16  clangRewrite17  clangToolingCore18  clangToolingRefactoring19  )20 21include_directories(22  ${CMAKE_CURRENT_SOURCE_DIR}23  include24  )25add_subdirectory(tool)26