Changeset View
Changeset View
Standalone View
Standalone View
llvm/lib/ExecutionEngine/CMakeLists.txt
Show All 16 Lines | add_llvm_component_library(LLVMExecutionEngine | ||||
Core | Core | ||||
MC | MC | ||||
Object | Object | ||||
RuntimeDyld | RuntimeDyld | ||||
Support | Support | ||||
Target | Target | ||||
) | ) | ||||
if(BUILD_SHARED_LIBS) | |||||
target_link_libraries(LLVMExecutionEngine PUBLIC LLVMRuntimeDyld) | |||||
endif() | |||||
add_subdirectory(Interpreter) | add_subdirectory(Interpreter) | ||||
add_subdirectory(JITLink) | add_subdirectory(JITLink) | ||||
add_subdirectory(MCJIT) | add_subdirectory(MCJIT) | ||||
add_subdirectory(Orc) | add_subdirectory(Orc) | ||||
add_subdirectory(RuntimeDyld) | add_subdirectory(RuntimeDyld) | ||||
if( LLVM_USE_OPROFILE ) | if( LLVM_USE_OPROFILE ) | ||||
add_subdirectory(OProfileJIT) | add_subdirectory(OProfileJIT) | ||||
Show All 9 Lines |