35 lines · plain
1set(LLVM_LINK_COMPONENTS2 ${LLVM_TARGETS_TO_BUILD}3 AsmPrinter4 BinaryFormat5 CodeGenTypes6 DebugInfoDWARF7 DebugInfoDWARFLowLevel8 MC9 Object10 ObjectYAML11 Support12 TargetParser13 )14 15add_llvm_unittest(DebugInfoDWARFTests16 DwarfGenerator.cpp17 DwarfUtils.cpp18 DWARFAcceleratorTableTest.cpp19 DWARFDataExtractorTest.cpp20 DWARFDebugAbbrevTest.cpp21 DWARFDebugArangeSetTest.cpp22 DWARFDebugFrameTest.cpp23 DWARFDebugInfoTest.cpp24 DWARFDebugLineTest.cpp25 DWARFDieTest.cpp26 DWARFDieManualExtractTest.cpp27 DWARFExpressionCopyBytesTest.cpp28 DWARFExpressionCompactPrinterTest.cpp29 DWARFFormValueTest.cpp30 DWARFListTableTest.cpp31 DWARFLocationExpressionTest.cpp32 )33 34target_link_libraries(DebugInfoDWARFTests PRIVATE LLVMTestingSupport)35