aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Object/CMakeLists.txt
blob: 1343352d1dc69e4e80f76afa7e5b14bba89b3120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
set(LLVM_LINK_COMPONENTS
  BinaryFormat
  Object
  ObjectYAML
  TargetParser
  )

add_llvm_unittest(ObjectTests
  ArchiveTest.cpp
  COFFObjectFileTest.cpp
  DXContainerTest.cpp
  ELFObjectFileTest.cpp
  ELFTypesTest.cpp
  ELFTest.cpp
  GOFFObjectFileTest.cpp
  MinidumpTest.cpp
  ObjectFileTest.cpp
  OffloadingTest.cpp
  OffloadingBundleTest.cpp
  SymbolSizeTest.cpp
  SymbolicFileTest.cpp
  XCOFFObjectFileTest.cpp
  )

target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)

if (MSVC)
  # Disable warning C4309: '=': truncation of constant value
  set_source_files_properties(GOFFObjectFileTest.cpp PROPERTIES COMPILE_FLAGS -wd4309)
endif()