llvm-project/clang-tools-extra/tool-template/CMakeLists.txt

18 lines
255 B
CMake

set(LLVM_LINK_COMPONENTS
Support
)
add_clang_executable(tool-template
ToolTemplate.cpp
)
clang_target_link_libraries(tool-template
PRIVATE
clangAST
clangASTMatchers
clangBasic
clangFrontend
clangTooling
clangToolingRefactoring
)