repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Alignment] Move OffsetToAlignment to Alignment.h
[llvm-core.git]
/
examples
/
ExceptionDemo
/
CMakeLists.txt
blob
793cf291ca6f110eae23c396e24c2ee3cd050bcd
1
set(LLVM_LINK_COMPONENTS
2
Core
3
ExecutionEngine
4
MC
5
MCJIT
6
RuntimeDyld
7
Support
8
Target
9
nativecodegen
10
)
11
12
# Enable EH and RTTI for this demo
13
if(NOT LLVM_ENABLE_EH)
14
message(FATAL_ERROR "ExceptionDemo must require EH.")
15
endif()
16
17
add_llvm_example(ExceptionDemo
18
ExceptionDemo.cpp
19
)
20
21
export_executable_symbols(ExceptionDemo)