14 lines
276 B
Text
14 lines
276 B
Text
|
add_llvm_library(AnnotateFunctions MODULE AnnotateFunctions.cpp PLUGIN_TOOL clang)
|
||
|
|
||
|
if(WIN32 OR CYGWIN)
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
Support
|
||
|
)
|
||
|
clang_target_link_libraries(AnnotateFunctions PRIVATE
|
||
|
clangAST
|
||
|
clangBasic
|
||
|
clangFrontend
|
||
|
clangLex
|
||
|
)
|
||
|
endif()
|