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 | 5ed962656c8fa76d66466cd2c9827f44fc50244e (patch) | |
tree | 0f20f3884272240ed2212f38b41ad2c8594c72ae /llvm/lib/ExecutionEngine | |
parent | 5bfec69b1d3c5e57db530e325f1a7fd19bf0fea4 (diff) | |
download | bcm5719-llvm-5ed962656c8fa76d66466cd2c9827f44fc50244e.tar.gz bcm5719-llvm-5ed962656c8fa76d66466cd2c9827f44fc50244e.zip |
Move library stuff out of the toplevel CMakeLists.txt file.
llvm-svn: 125968
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/CMakeLists.txt b/llvm/lib/ExecutionEngine/CMakeLists.txt index 0e118ccd904..b5632d2bc5c 100644 --- a/llvm/lib/ExecutionEngine/CMakeLists.txt +++ b/llvm/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) |