xref: /llvm-project/bolt/lib/RuntimeLibs/CMakeLists.txt (revision e7244d8659f1ee7b6dcf8fc90e33d81cda178f45)
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  NO_EXPORT
15  DISABLE_LLVM_LINK_LLVM_DYLIB
16  )
17
18target_link_libraries(LLVMBOLTRuntimeLibs
19  PRIVATE
20  LLVMBOLTCore
21  LLVMBOLTPasses
22  LLVMBOLTUtils
23  )
24