diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-02-18 22:06:14 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-02-18 22:06:14 +0000 |
commit | 6d857ca4d71548f5cdb57b106cc1a12fc2c93e9d (patch) | |
tree | b9cee0ab1c312b750d15cdcaf557671ba8949ccc /lib/ExecutionEngine | |
parent | ba05c01dabc40373760a20c874103fc58d4377f0 (diff) | |
download | external_llvm-6d857ca4d71548f5cdb57b106cc1a12fc2c93e9d.zip external_llvm-6d857ca4d71548f5cdb57b106cc1a12fc2c93e9d.tar.gz external_llvm-6d857ca4d71548f5cdb57b106cc1a12fc2c93e9d.tar.bz2 |
Move library stuff out of the toplevel CMakeLists.txt file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125968 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/CMakeLists.txt b/lib/ExecutionEngine/CMakeLists.txt index 0e118cc..b5632d2 100644 --- a/lib/ExecutionEngine/CMakeLists.txt +++ b/lib/ExecutionEngine/CMakeLists.txt @@ -2,3 +2,7 @@ add_llvm_library(LLVMExecutionEngine ExecutionEngine.cpp ExecutionEngineBindings.cpp ) + +add_subdirectory(Interpreter) +add_subdirectory(JIT) +add_subdirectory(MCJIT) |