CMakeLists.txt 397 B

123456789101112131415161718
  1. # If we don't need RTTI or EH, there's no reason to export anything
  2. # from the hello plugin.
  3. if( NOT LLVM_REQUIRES_RTTI )
  4. if( NOT LLVM_REQUIRES_EH )
  5. set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Hello.exports)
  6. endif()
  7. endif()
  8. if(WIN32 OR CYGWIN)
  9. set(LLVM_LINK_COMPONENTS Core Support)
  10. endif()
  11. add_llvm_loadable_module( LLVMHello
  12. Hello.cpp
  13. DEPENDS
  14. intrinsics_gen
  15. )