mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
21 lines
403 B
CMake
21 lines
403 B
CMake
|
# This tool is excluded from the CMake build if Intel JIT events are disabled.
|
||
|
|
||
|
link_directories( ${LLVM_INTEL_JITEVENTS_LIBDIR} )
|
||
|
include_directories( ${LLVM_INTEL_JITEVENTS_INCDIR} )
|
||
|
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
asmparser
|
||
|
bitreader
|
||
|
inteljitevents
|
||
|
interpreter
|
||
|
jit
|
||
|
mcjit
|
||
|
nativecodegen
|
||
|
object
|
||
|
selectiondag
|
||
|
)
|
||
|
|
||
|
add_llvm_tool(llvm-jitlistener
|
||
|
llvm-jitlistener.cpp
|
||
|
)
|