Files
Khem Raj 3e04c621c4 magic-enum: Upgrade to latest
It has fixes for C23 and Clang-22 added also fixes/workarounds for
libstdc++-14 combinations with different versions of gcc and clang.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-04-16 16:30:37 -07:00

45 lines
1.2 KiB
BlitzBasic

# SPDX-FileCopyrightText: 2024 Bosch Sicherheitssysteme GmbH
#
# SPDX-License-Identifier: MIT
SUMMARY = "Static reflection for enums"
DESCRIPTION = "Header-only C++17 library provides static reflection for enums, works \
with any enum type without any macro or boilerplate code."
BUGTRACKER = "https://github.com/Neargye/magic_enum/issues"
HOMEPAGE = "https://github.com/Neargye/magic_enum"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7e7717cf723eb72f57e80fdb651cb318"
SRC_URI = " \
git://github.com/Neargye/magic_enum.git;protocol=https;branch=master \
file://run-ptest \
"
SRCREV = "7d87efb4a3dddbbe8caa9ca14eff05ede1102ab8"
PV .= "+git"
inherit cmake ptest
EXTRA_OECMAKE = "\
-DMAGIC_ENUM_OPT_BUILD_EXAMPLES=OFF \
"
do_install_ptest () {
install -d ${D}${PTEST_PATH}/tests
install -m 0755 ${B}/test/test_* ${D}${PTEST_PATH}/tests
}
# Add catkin and colcon (ROS build system) support
FILES:${PN}-dev += "\
${datadir}/magic_enum/package.xml \
"
# Header-only library
# ${PN} is empty so we need to tweak -dev and -dbg package dependencies
RDEPENDS:${PN}-dev = ""
RDEPENDS:${PN}-ptest = ""
RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
BBCLASSEXTEND = "native nativesdk"