mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-25 19:27:14 +00:00
5f60f22d4d
Changelog: =========== - Add WebSocket autobahn client testsuite - Fail fast after receiving invalid UTF-8 payload in WebSocket connection - Fix HTTP date formatting data race - Fix exception reads from generic JSON - guard iterator against end in stencilcount - guard fixed-size arrays in beve bool and complex readers - guard eetf_to_json length readers against char sign extension - guard eetf big integer sign byte read against end - guard http_client chunked readers against chunk size overflow Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
20 lines
712 B
BlitzBasic
20 lines
712 B
BlitzBasic
SUMMARY = "Extremely fast, in memory, JSON and reflection library for modern C++. BEVE, CBOR, CSV, MessagePack, TOML, EETF "
|
|
HOMEPAGE = "https://stephenberry.github.io/glaze/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4d29875d83fbbf50485c846dbbbed8"
|
|
|
|
SRC_URI = "git://github.com/stephenberry/glaze;protocol=https;branch=main;tag=v${PV}"
|
|
|
|
SRCREV = "c2eef5e33ef0b0e221e8b2154f7988dcaa13f483"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "-Dglaze_BUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -Dglaze_ENABLE_FUZZING=OFF -Dglaze_DEVELOPER_MODE=OFF"
|
|
|
|
FILES:${PN}-dev += "${datadir}/${BPN}/*.cmake"
|
|
|
|
# Glaze is a header-only C++ library, so the main package will be empty.
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
BBCLASSEXTEND = "native"
|