summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/glaze/glaze_7.0.1.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/glaze/glaze_7.0.1.bb b/meta-oe/recipes-support/glaze/glaze_7.0.1.bb
new file mode 100644
index 0000000000..e481290b9c
--- /dev/null
+++ b/meta-oe/recipes-support/glaze/glaze_7.0.1.bb
@@ -0,0 +1,23 @@
1SUMMARY = "Extremely fast, in memory, JSON and reflection library for modern C++. BEVE, CBOR, CSV, MessagePack, TOML, EETF "
2HOMEPAGE = "https://stephenberry.github.io/glaze/"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4d29875d83fbbf50485c846dbbbed8"
5
6SRC_URI = "git://github.com/stephenberry/glaze;protocol=https;branch=main;tag=v${PV}"
7
8SRCREV = "a4af950700b8af2659f0d4a37a18a1b9c5300593"
9
10inherit cmake
11
12EXTRA_OECMAKE = "-Dglaze_BUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -Dglaze_ENABLE_FUZZING=OFF -Dglaze_DEVELOPER_MODE=OFF"
13
14do_install:append() {
15 install -d ${D}${datadir}/cmake/${BPN}
16 mv -f ${D}${datadir}/${BPN}/*.cmake ${D}${datadir}/cmake/${BPN}
17 rmdir -p --ignore-fail-on-non-empty ${D}${datadir}/${BPN}
18}
19
20# Glaze is a header-only C++ library, so the main package will be empty.
21ALLOW_EMPTY:${PN} = "1"
22
23BBCLASSEXTEND = "native"