2013-12-10 11:13:32 +00:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Core
|
|
|
|
ExecutionEngine
|
2014-10-31 15:27:16 +00:00
|
|
|
MC
|
2013-12-10 11:13:32 +00:00
|
|
|
MCJIT
|
2015-03-31 00:03:36 +00:00
|
|
|
RuntimeDyld
|
2013-12-10 11:13:32 +00:00
|
|
|
Support
|
|
|
|
nativecodegen
|
|
|
|
)
|
|
|
|
|
2014-07-22 15:41:18 +00:00
|
|
|
# Enable EH and RTTI for this demo
|
2010-10-17 02:26:16 +00:00
|
|
|
set(LLVM_REQUIRES_EH 1)
|
2014-07-22 15:41:18 +00:00
|
|
|
set(LLVM_REQUIRES_RTTI 1)
|
2010-09-13 23:59:48 +00:00
|
|
|
|
2015-03-31 16:41:25 +00:00
|
|
|
set(LLVM_BUILD_EXAMPLES OFF)
|
2015-03-31 00:03:43 +00:00
|
|
|
|
2010-02-09 23:22:43 +00:00
|
|
|
add_llvm_example(ExceptionDemo
|
|
|
|
ExceptionDemo.cpp
|
|
|
|
)
|
2013-04-26 19:07:40 +00:00
|
|
|
|
2015-03-18 20:09:13 +00:00
|
|
|
export_executable_symbols(ExceptionDemo)
|