18 lines
246 B
CMake
18 lines
246 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
add_clang_executable(tool-template
|
||
|
ToolTemplate.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(tool-template
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangBasic
|
||
|
clangFrontend
|
||
|
clangTooling
|
||
|
clangToolingRefactor
|
||
|
)
|