comparison lib/ExecutionEngine/CMakeLists.txt @ 148:63bd29f05246

merged
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 14 Aug 2019 19:46:37 +0900
parents c2174574ed3a
children
comparison
equal deleted inserted replaced
146:3fc4d5c3e21e 148:63bd29f05246
17 if(BUILD_SHARED_LIBS) 17 if(BUILD_SHARED_LIBS)
18 target_link_libraries(LLVMExecutionEngine PUBLIC LLVMRuntimeDyld) 18 target_link_libraries(LLVMExecutionEngine PUBLIC LLVMRuntimeDyld)
19 endif() 19 endif()
20 20
21 add_subdirectory(Interpreter) 21 add_subdirectory(Interpreter)
22 add_subdirectory(JITLink)
22 add_subdirectory(MCJIT) 23 add_subdirectory(MCJIT)
23 add_subdirectory(Orc) 24 add_subdirectory(Orc)
24 add_subdirectory(RuntimeDyld) 25 add_subdirectory(RuntimeDyld)
25 26
26 if( LLVM_USE_OPROFILE ) 27 if( LLVM_USE_OPROFILE )
28 endif( LLVM_USE_OPROFILE ) 29 endif( LLVM_USE_OPROFILE )
29 30
30 if( LLVM_USE_INTEL_JITEVENTS ) 31 if( LLVM_USE_INTEL_JITEVENTS )
31 add_subdirectory(IntelJITEvents) 32 add_subdirectory(IntelJITEvents)
32 endif( LLVM_USE_INTEL_JITEVENTS ) 33 endif( LLVM_USE_INTEL_JITEVENTS )
34
35 if( LLVM_USE_PERF )
36 add_subdirectory(PerfJITEvents)
37 endif( LLVM_USE_PERF )