llvm/tools/yaml2obj/CMakeLists.txt
Chris Bieneman 581f04c40e [yaml2obj] Refactor and abstract yaml2dwarf functions
This abstracts the code for emitting DWARF binary from the DWARFYAML types into reusable interfaces that could be used by ELF and COFF.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288990 91177308-0d34-0410-b5e6-96231b3b80d8
2016-12-07 22:30:15 +00:00

15 lines
174 B
CMake

set(LLVM_LINK_COMPONENTS
MC
Object
ObjectYAML
Support
)
add_llvm_tool(yaml2obj
yaml2obj.cpp
yaml2coff.cpp
yaml2dwarf.cpp
yaml2elf.cpp
yaml2macho.cpp
)