mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-18 06:03:47 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
731 B
BlitzBasic
25 lines
731 B
BlitzBasic
SUMMARY = "toml config parser and serializer for c++."
|
|
HOMEPAGE = "https://github.com/marzer/tomlplusplus"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=90960f22c10049c117d56ed2ee5ee167"
|
|
|
|
SRC_URI = "git://github.com/marzer/tomlplusplus.git;protocol=https;branch=master \
|
|
file://run-ptest \
|
|
"
|
|
|
|
PV = "3.4.0"
|
|
SRCREV = "30172438cee64926dc41fdd9c11fb3ba5b2ba9de"
|
|
|
|
DEPENDS = "cmake-native"
|
|
|
|
inherit meson ptest pkgconfig
|
|
|
|
EXTRA_OEMESON += "-Dbuild_tests=${@bb.utils.contains("DISTRO_FEATURES", "ptest", "true", "false", d)} \
|
|
"
|
|
|
|
do_install_ptest () {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp ${B}/tests/tomlplusplus_odr_test ${D}${PTEST_PATH}/tests
|
|
cp ${B}/tests/tomlplusplus_tests ${D}${PTEST_PATH}/tests
|
|
}
|