xref: /llvm-project/llvm/unittests/Object/CMakeLists.txt (revision 627512a96c2b6d45aff97fa8a0d774681aa53657)
1set(LLVM_LINK_COMPONENTS
2  BinaryFormat
3  Object
4  ObjectYAML
5  TargetParser
6  )
7
8add_llvm_unittest(ObjectTests
9  ArchiveTest.cpp
10  COFFObjectFileTest.cpp
11  DXContainerTest.cpp
12  ELFObjectFileTest.cpp
13  ELFTypesTest.cpp
14  ELFTest.cpp
15  GOFFObjectFileTest.cpp
16  MinidumpTest.cpp
17  ObjectFileTest.cpp
18  OffloadingTest.cpp
19  SymbolSizeTest.cpp
20  SymbolicFileTest.cpp
21  XCOFFObjectFileTest.cpp
22  )
23
24target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)
25
26if (MSVC)
27  # Disable warning C4309: '=': truncation of constant value
28  set_source_files_properties(GOFFObjectFileTest.cpp PROPERTIES COMPILE_FLAGS -wd4309)
29endif()
30