brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · 5d8e4c7 Raw
20 lines · plain
1set(LLVM_LINK_COMPONENTS2  Core3  ExecutionEngine4  ORCJIT5  Support6  Target7  nativecodegen8  )9 10# Enable EH and RTTI for this demo11if(NOT LLVM_ENABLE_EH)12  message(FATAL_ERROR "ExceptionDemo must require EH.")13endif()14 15add_llvm_example(ExceptionDemo16  ExceptionDemo.cpp17 18  EXPORT_SYMBOLS19  )20