mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
a15c9749be
This makes the dwarf2yaml code separated and reusable allowing ELF and COFF to share implementations with MachO. llvm-svn: 288986
16 lines
198 B
CMake
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
|
|
)
|