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