b4354f66f0d6697e0e6eaf9198368af65820d7f5
[oota-llvm.git] / examples / ExceptionDemo / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Core
3   ExecutionEngine
4   MC
5   MCJIT
6   RuntimeDyld
7   Support
8   nativecodegen
9   )
10
11 # Enable EH and RTTI for this demo
12 set(LLVM_REQUIRES_EH 1)
13 set(LLVM_REQUIRES_RTTI 1)
14
15 set(LLVM_BUILD_EXAMPLES OFF)
16
17 add_llvm_example(ExceptionDemo
18   ExceptionDemo.cpp
19   )
20
21 export_executable_symbols(ExceptionDemo)