Files
llvm-project/llvm/lib/BinaryFormat/CMakeLists.txt
Kazu Hirata 370058777b [BinaryFormat] Remove redundant declarations (NFC) (#166316)
In C++17, static constexpr members are implicitly inline, so they no
longer require an out-of-line definition.

Once we remove the redundant declarations, Minidump.cpp becomes
effectively empty, so this patch removes the file.

Identified with readability-redundant-declaration.
2025-11-04 07:12:37 -08:00

24 lines
391 B
CMake

add_llvm_component_library(LLVMBinaryFormat
AMDGPUMetadataVerifier.cpp
COFF.cpp
Dwarf.cpp
DXContainer.cpp
ELF.cpp
MachO.cpp
Magic.cpp
MsgPackDocument.cpp
MsgPackDocumentYAML.cpp
MsgPackReader.cpp
MsgPackWriter.cpp
SFrame.cpp
Wasm.cpp
XCOFF.cpp
ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/BinaryFormat
LINK_COMPONENTS
Support
TargetParser
)