mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-12-27 19:30:05 +00:00
22 lines
432 B
CMake
22 lines
432 B
CMake
|
|
||
|
|
||
|
add_llvm_library(LLVMExecutionEngine
|
||
|
ExecutionEngine.cpp
|
||
|
ExecutionEngineBindings.cpp
|
||
|
RTDyldMemoryManager.cpp
|
||
|
TargetSelect.cpp
|
||
|
)
|
||
|
|
||
|
add_subdirectory(Interpreter)
|
||
|
add_subdirectory(JIT)
|
||
|
add_subdirectory(MCJIT)
|
||
|
add_subdirectory(RuntimeDyld)
|
||
|
|
||
|
if( LLVM_USE_OPROFILE )
|
||
|
add_subdirectory(OProfileJIT)
|
||
|
endif( LLVM_USE_OPROFILE )
|
||
|
|
||
|
if( LLVM_USE_INTEL_JITEVENTS )
|
||
|
add_subdirectory(IntelJITEvents)
|
||
|
endif( LLVM_USE_INTEL_JITEVENTS )
|