blob: 2a7667dfba42c0f11f7d75aa52b2251f409df40b [file] [log] [blame]
NAKAMURA Takumib5c4b8762013-12-10 11:13:32 +00001set(LLVM_LINK_COMPONENTS
2 Core
3 ExecutionEngine
NAKAMURA Takumi0ad1c302014-10-31 15:27:16 +00004 MC
NAKAMURA Takumib5c4b8762013-12-10 11:13:32 +00005 MCJIT
6 Support
7 nativecodegen
8 )
9
Dan Liewa5bdc842014-07-22 15:41:18 +000010# Enable EH and RTTI for this demo
Oscar Fuentes889c1e72010-10-17 02:26:16 +000011set(LLVM_REQUIRES_EH 1)
Dan Liewa5bdc842014-07-22 15:41:18 +000012set(LLVM_REQUIRES_RTTI 1)
Michael J. Spencer93c9b2e2010-09-13 23:59:48 +000013
Garrison Vennf4d2f842010-02-09 23:22:43 +000014add_llvm_example(ExceptionDemo
15 ExceptionDemo.cpp
16 )
Rafael Espindola03ee04b2013-04-26 19:07:40 +000017
Reid Kleckner3e8c4452015-03-18 20:09:13 +000018export_executable_symbols(ExceptionDemo)