You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
355 B
23 lines
355 B
7 months ago
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||
|
|
||
|
add_clang_tool(clang-move
|
||
|
ClangMove.cpp
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(clang-move
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangBasic
|
||
|
clangFormat
|
||
|
clangFrontend
|
||
|
clangRewrite
|
||
|
clangSerialization
|
||
|
clangTooling
|
||
|
clangToolingCore
|
||
|
)
|
||
|
target_link_libraries(clang-move
|
||
|
PRIVATE
|
||
|
clangMove
|
||
|
)
|