CMakeLists.txt 337 B

123456789101112131415161718192021
  1. set(LLVM_LINK_COMPONENTS
  2. Core
  3. ExecutionEngine
  4. MC
  5. MCJIT
  6. RuntimeDyld
  7. Support
  8. Target
  9. nativecodegen
  10. )
  11. # Enable EH and RTTI for this demo
  12. if(NOT LLVM_ENABLE_EH)
  13. message(FATAL_ERROR "ExceptionDemo must require EH.")
  14. endif()
  15. add_llvm_example(ExceptionDemo
  16. ExceptionDemo.cpp
  17. )
  18. export_executable_symbols(ExceptionDemo)