mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-17 21:42:12 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246152 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
337 B
CMake
22 lines
337 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
MC
|
|
MCJIT
|
|
RuntimeDyld
|
|
Support
|
|
Target
|
|
nativecodegen
|
|
)
|
|
|
|
# Enable EH and RTTI for this demo
|
|
if(NOT LLVM_ENABLE_EH)
|
|
message(FATAL_ERROR "ExceptionDemo must require EH.")
|
|
endif()
|
|
|
|
add_llvm_example(ExceptionDemo
|
|
ExceptionDemo.cpp
|
|
)
|
|
|
|
export_executable_symbols(ExceptionDemo)
|