[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / tools / llvm-jitlistener / CMakeLists.txt
blob85922415fb62f9ec78eb94bfb7a28b1cff41407b
1 # This tool is excluded from the CMake build if Intel JIT events are disabled.
3 link_directories( ${LLVM_INTEL_JITEVENTS_LIBDIR} )
4 include_directories( ${LLVM_INTEL_JITEVENTS_INCDIR} )
6 set(LLVM_LINK_COMPONENTS
7   asmparser
8   bitreader
9   DebugInfoDWARF
10   inteljitevents
11   interpreter
12   irreader
13   mcjit
14   nativecodegen
15   object
16   selectiondag
17   Support
18   TargetParser
19   ExecutionEngine
20   RuntimeDyld
21   Core
22   )
24 add_llvm_tool(llvm-jitlistener
25   llvm-jitlistener.cpp
26   )