blob: cb11bfe93c7c9078aac8075c4bccf7df6dd5a629 [file] [log] [blame]
Eli Bendersky5262ad22012-03-13 08:33:15 +00001
2
Douglas Gregor85fedbe2009-06-23 17:57:35 +00003add_llvm_library(LLVMExecutionEngine
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00004 ExecutionEngine.cpp
5 ExecutionEngineBindings.cpp
Dylan Noblesmith1756faa2011-05-13 21:36:16 +00006 TargetSelect.cpp
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00007 )
Oscar Fuentes5ed96262011-02-18 22:06:14 +00008
9add_subdirectory(Interpreter)
10add_subdirectory(JIT)
11add_subdirectory(MCJIT)
Oscar Fuentese4840e22011-03-21 23:07:53 +000012add_subdirectory(RuntimeDyld)
Eli Bendersky5262ad22012-03-13 08:33:15 +000013
14if( LLVM_USE_OPROFILE )
15 add_subdirectory(OProfileJIT)
16endif( LLVM_USE_OPROFILE )
17
18if( LLVM_USE_INTEL_JITEVENTS )
19 add_subdirectory(IntelJITEvents)
20endif( LLVM_USE_INTEL_JITEVENTS )