1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/unittests/ObjectYAML/CMakeLists.txt
Kazushi (Jam) Marukawa 3398257fcd [VE] Implements minimum MC layer for VE (3/4)
Summary:
Define ELF binary code for VE and modify code where should use this new code.

Depends on D79544.

Reviewed By: jhenderson

Differential Revision: https://reviews.llvm.org/D79545
2020-05-28 10:07:48 +02:00

14 lines
232 B
CMake

set(LLVM_LINK_COMPONENTS
Object
ObjectYAML
)
add_llvm_unittest(ObjectYAMLTests
ELFYAMLTest.cpp
MinidumpYAMLTest.cpp
YAML2ObjTest.cpp
YAMLTest.cpp
)
target_link_libraries(ObjectYAMLTests PRIVATE LLVMTestingSupport)