xref: /openbsd-src/gnu/llvm/clang/examples/Attribute/CMakeLists.txt (revision 12c855180aad702bbcca06e0398d774beeafb155)
1add_llvm_library(Attribute MODULE Attribute.cpp PLUGIN_TOOL clang)
2
3if(WIN32 OR CYGWIN)
4  target_link_libraries(Attribute PRIVATE
5    clangAST
6    clangBasic
7    clangFrontend
8    clangLex
9    LLVMSupport
10    )
11endif()
12