llvm-6502/tools/llvm-jitlistener/CMakeLists.txt
Rafael Espindola 51652580f4 Fix the -DBUILD_SHARED_LIBS=ON build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241608 91177308-0d34-0410-b5e6-96231b3b80d8
2015-07-07 17:48:00 +00:00

26 lines
454 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
DebugInfoDWARF
inteljitevents
interpreter
irreader
mcjit
nativecodegen
object
selectiondag
Support
ExecutionEngine
RuntimeDyld
Core
)
add_llvm_tool(llvm-jitlistener
llvm-jitlistener.cpp
)