repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Workflow] Try to fix code-formatter failing to find changes in some cases.
[llvm-project.git]
/
clang-tools-extra
/
clang-apply-replacements
/
CMakeLists.txt
blob
93198ccbfc406fa24b6b1d22849b9518ea9e36c0
1
set(LLVM_LINK_COMPONENTS
2
Support
3
)
4
5
add_clang_library(clangApplyReplacements
6
lib/Tooling/ApplyReplacements.cpp
7
8
DEPENDS
9
ClangDriverOptions
10
)
11
12
clang_target_link_libraries(clangApplyReplacements
13
PRIVATE
14
clangAST
15
clangBasic
16
clangRewrite
17
clangToolingCore
18
clangToolingRefactoring
19
)
20
21
include_directories(
22
${CMAKE_CURRENT_SOURCE_DIR}
23
include
24
)
25
add_subdirectory(tool)