1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/tools/obj2yaml/CMakeLists.txt
Pavel Labath 4f272b6849 Add minidump support to obj2yaml
Summary:
This patch adds the code needed to parse a minidump file into the
MinidumpYAML model, and the necessary glue code so that obj2yaml can
recognise the minidump files and process them.

Reviewers: jhenderson, zturner, clayborg

Subscribers: mgorny, lldb-commits, amccarth, markmentovai, aprantl, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D59634

llvm-svn: 357469
2019-04-02 11:58:37 +00:00

20 lines
269 B
CMake

set(LLVM_LINK_COMPONENTS
BinaryFormat
DebugInfoCodeView
DebugInfoDWARF
Object
ObjectYAML
Support
)
add_llvm_tool(obj2yaml
obj2yaml.cpp
coff2yaml.cpp
dwarf2yaml.cpp
elf2yaml.cpp
macho2yaml.cpp
minidump2yaml.cpp
wasm2yaml.cpp
Error.cpp
)