You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
|
|
if( HAVE_LIBDL )
|
|
set(LLVM_INTEL_JIT_LIBS ${CMAKE_DL_LIBS})
|
|
endif()
|
|
|
|
set(LLVM_INTEL_JIT_LIBS ${PTHREAD_LIB} ${LLVM_INTEL_JIT_LIBS})
|
|
|
|
|
|
add_llvm_library(LLVMIntelJITEvents
|
|
IntelJITEventListener.cpp
|
|
jitprofiling.c
|
|
|
|
LINK_LIBS ${LLVM_INTEL_JIT_LIBS}
|
|
)
|
|
|
|
add_dependencies(LLVMIntelJITEvents LLVMCodeGen)
|