[CMake] llvm/examples: Update libdeps for unoptimized builds.
[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 set_target_properties(ExceptionDemo PROPERTIES ENABLE_EXPORTS 1)