diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-02-23 00:36:25 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-02-23 00:36:25 +0000 |
| commit | e960a4e39b73eccabb3c8f5c3fc72c5e285d5351 (patch) | |
| tree | 3444d30c0954ebd7b163d2bcb980f68e757b89bd /llvm/unittests/ExecutionEngine/CMakeLists.txt | |
| parent | 9e07346679663cfa971ee1b6ed2ab6adcd919541 (diff) | |
| download | bcm5719-llvm-e960a4e39b73eccabb3c8f5c3fc72c5e285d5351.tar.gz bcm5719-llvm-e960a4e39b73eccabb3c8f5c3fc72c5e285d5351.zip | |
[orc] Add a trivial unit test to get the ball rolling
I made my best guess at the Makefile, since I don't have a make build.
I'm not sure if it should be valid to add an empty list of things, but
it seemed the sort of degenerate case.
llvm-svn: 230196
Diffstat (limited to 'llvm/unittests/ExecutionEngine/CMakeLists.txt')
| -rw-r--r-- | llvm/unittests/ExecutionEngine/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/CMakeLists.txt b/llvm/unittests/ExecutionEngine/CMakeLists.txt index 05e093e0c0b..302de9943ff 100644 --- a/llvm/unittests/ExecutionEngine/CMakeLists.txt +++ b/llvm/unittests/ExecutionEngine/CMakeLists.txt @@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS ExecutionEngine Interpreter MC + OrcJIT RuntimeDyld Support ) @@ -11,6 +12,8 @@ add_llvm_unittest(ExecutionEngineTests ExecutionEngineTest.cpp ) +add_subdirectory(Orc) + # Include MCJIT tests only if native arch is a built JIT target. list(FIND LLVM_TARGETS_TO_BUILD "${LLVM_NATIVE_ARCH}" build_idx) list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" jit_idx) |

