diff options
Diffstat (limited to 'llvm/examples/HowToUseLLJIT/CMakeLists.txt')
-rw-r--r-- | llvm/examples/HowToUseLLJIT/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/examples/HowToUseLLJIT/CMakeLists.txt b/llvm/examples/HowToUseLLJIT/CMakeLists.txt new file mode 100644 index 00000000000..77a8e8c704c --- /dev/null +++ b/llvm/examples/HowToUseLLJIT/CMakeLists.txt @@ -0,0 +1,10 @@ +set(LLVM_LINK_COMPONENTS + Core + OrcJIT + Support + nativecodegen + ) + +add_llvm_example(HowToUseLLJIT + HowToUseLLJIT.cpp + ) |