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

16 lines
213 B
CMake

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