summaryrefslogtreecommitdiff
path: root/examples/AnnotateFunctions/CMakeLists.txt
blob: e9850b64f08d7cc0e35321e1a92ce6b98ad69f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
add_llvm_library(AnnotateFunctions MODULE AnnotateFunctions.cpp PLUGIN_TOOL clang)

if(LLVM_ENABLE_PLUGINS AND (WIN32 OR CYGWIN))
  set(LLVM_LINK_COMPONENTS
    Support
  )
  clang_target_link_libraries(AnnotateFunctions PRIVATE
    clangAST
    clangBasic
    clangFrontend
    clangLex
    )
endif()