llvm-project/clang/examples/PluginsOrder/CMakeLists.txt

12 lines
260 B
CMake
Raw Normal View History

add_llvm_library(PluginsOrder MODULE PluginsOrder.cpp PLUGIN_TOOL clang)
if(CLANG_PLUGIN_SUPPORT AND (WIN32 OR CYGWIN))
set(LLVM_LINK_COMPONENTS
Support
)
clang_target_link_libraries(PluginsOrder PRIVATE
clangAST
clangFrontend
)
endif()