24 lines · plain
1if( NOT LLVM_BUILD_TOOLS )2 set(EXCLUDE_FROM_ALL ON)3endif()4 5# If we don't need RTTI or EH, there's no reason to export anything6# from this plugin.7if( NOT LLVM_REQUIRES_RTTI )8 if( NOT LLVM_REQUIRES_EH )9 set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/bugpoint.exports)10 endif()11endif()12 13if(WIN32 OR CYGWIN OR ZOS)14 set(LLVM_LINK_COMPONENTS Core Support)15endif()16 17add_llvm_library( BugpointPasses MODULE BUILDTREE_ONLY18 TestPasses.cpp19 20 DEPENDS21 intrinsics_gen22 bugpoint23 )24