xref: /llvm-project/bolt/lib/RuntimeLibs/CMakeLists.txt (revision 61cff9079c083fdcfb9fa324e50b9e480165037e)
1set(LLVM_LINK_COMPONENTS
2  BinaryFormat
3  MC
4  Object
5  RuntimeDyld
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