xref: /llvm-project/bolt/lib/RuntimeLibs/CMakeLists.txt (revision 05634f7346a59f6dab89cde53f39b40d9a70b9c9)
1set(LLVM_LINK_COMPONENTS
2  BinaryFormat
3  JITLink
4  MC
5  Object
6  Support
7  )
8
9add_llvm_library(LLVMBOLTRuntimeLibs
10  RuntimeLibrary.cpp
11  HugifyRuntimeLibrary.cpp
12  InstrumentationRuntimeLibrary.cpp
13
14  DISABLE_LLVM_LINK_LLVM_DYLIB
15  )
16
17target_link_libraries(LLVMBOLTRuntimeLibs
18  PRIVATE
19  LLVMBOLTCore
20  LLVMBOLTPasses
21  LLVMBOLTUtils
22  )
23