1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/tools/obj2yaml/CMakeLists.txt
Chris Bieneman a15c9749be [obj2yaml] Refactor and abstract dwarf2yaml
This makes the dwarf2yaml code separated and reusable allowing ELF and COFF to share implementations with MachO.

llvm-svn: 288986
2016-12-07 21:47:28 +00:00

16 lines
198 B
CMake

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