[Orc] Move SectionMemoryManager's implementation from MCJIT to ExecutionEngine.
[oota-llvm.git] / lib / ExecutionEngine / CMakeLists.txt
1
2
3 add_llvm_library(LLVMExecutionEngine
4   ExecutionEngine.cpp
5   ExecutionEngineBindings.cpp
6   GDBRegistrationListener.cpp
7   RTDyldMemoryManager.cpp
8   SectionMemoryManager.cpp
9   TargetSelect.cpp
10   )
11
12 add_subdirectory(Interpreter)
13 add_subdirectory(MCJIT)
14 add_subdirectory(Orc)
15 add_subdirectory(RuntimeDyld)
16
17 if( LLVM_USE_OPROFILE )
18   add_subdirectory(OProfileJIT)
19 endif( LLVM_USE_OPROFILE )
20
21 if( LLVM_USE_INTEL_JITEVENTS )
22   add_subdirectory(IntelJITEvents)
23 endif( LLVM_USE_INTEL_JITEVENTS )