25 lines · plain
1set(LLVM_LINK_COMPONENTS2 DebugInfoDWARF3 Object4 ${LLVM_TARGETS_TO_BUILD}5 )6 7add_bolt_unittest(ProfileTests8 DataAggregator.cpp9 PerfSpeEvents.cpp10 11 DISABLE_LLVM_LINK_LLVM_DYLIB12 )13 14target_link_libraries(ProfileTests15 PRIVATE16 LLVMBOLTCore17 LLVMBOLTProfile18 LLVMTargetParser19 )20 21foreach (tgt ${BOLT_TARGETS_TO_BUILD})22 string(TOUPPER "${tgt}" upper)23 target_compile_definitions(ProfileTests PRIVATE "${upper}_AVAILABLE")24endforeach()25