1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
Lang Hames 09b07f5109 Add a HowToUseLLJIT example project.
A very minimal demo of how to use the LLJIT class, along the lines of the old
HowToUseJIT example.

llvm-svn: 361435
2019-05-22 21:38:41 +00:00

11 lines
127 B
CMake

set(LLVM_LINK_COMPONENTS
Core
OrcJIT
Support
nativecodegen
)
add_llvm_example(HowToUseLLJIT
HowToUseLLJIT.cpp
)