32 lines · plain
1set(LLVM_LINK_COMPONENTS2 BinaryFormat3 Object4 ObjectYAML5 TargetParser6 )7 8add_llvm_unittest(ObjectTests9 ArchiveTest.cpp10 BuildIDTest.cpp11 COFFObjectFileTest.cpp12 DXContainerTest.cpp13 ELFObjectFileTest.cpp14 ELFTypesTest.cpp15 ELFTest.cpp16 GOFFObjectFileTest.cpp17 MinidumpTest.cpp18 ObjectFileTest.cpp19 OffloadingTest.cpp20 OffloadingBundleTest.cpp21 SymbolSizeTest.cpp22 SymbolicFileTest.cpp23 XCOFFObjectFileTest.cpp24 )25 26target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)27 28if (MSVC)29 # Disable warning C4309: '=': truncation of constant value30 set_source_files_properties(GOFFObjectFileTest.cpp PROPERTIES COMPILE_FLAGS -wd4309)31endif()32