2013-12-10 19:13:32 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Core
|
|
|
|
ExecutionEngine
|
|
|
|
MCJIT
|
|
|
|
Support
|
|
|
|
nativecodegen
|
|
|
|
)
|
|
|
|
|
2014-07-22 23:41:18 +08:00
|
|
|
# Enable EH and RTTI for this demo
|
2010-10-17 10:26:16 +08:00
|
|
|
set(LLVM_REQUIRES_EH 1)
|
2014-07-22 23:41:18 +08:00
|
|
|
set(LLVM_REQUIRES_RTTI 1)
|
2010-09-14 07:59:48 +08:00
|
|
|
|
2010-02-10 07:22:43 +08:00
|
|
|
add_llvm_example(ExceptionDemo
|
|
|
|
ExceptionDemo.cpp
|
|
|
|
)
|
2013-04-27 03:07:40 +08:00
|
|
|
|
|
|
|
set_target_properties(ExceptionDemo PROPERTIES ENABLE_EXPORTS 1)
|