summaryrefslogtreecommitdiff
path: root/tools/llvm-jitlistener/CMakeLists.txt
blob: 57a4a0cbe170d384728e045860fad10f57d18329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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
  )