bfdcad485d
cJSON_Utils adds support for a few additional JSON RFCs. The size increase is small (around 12K for ARM32), but it is more than half the size of cJSON itself. So add a separate config option for cJSON_Utils. Cc: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
424 B
Plaintext
19 lines
424 B
Plaintext
config BR2_PACKAGE_CJSON
|
|
bool "cJSON"
|
|
help
|
|
An ultra-lightweight, portable, single-file, simple-as-can-be
|
|
ANSI-C compliant JSON parser, under MIT license.
|
|
|
|
https://github.com/DaveGamble/cJSON
|
|
|
|
if BR2_PACKAGE_CJSON
|
|
|
|
config BR2_PACKAGE_CJSON_UTILS
|
|
bool "cJSON utils"
|
|
help
|
|
Supplementary library with support for JSON Pointer
|
|
(RFC-6901), JSON Patch (RFC-6902), JSON Merge Patch
|
|
(RFC-7386), and more.
|
|
|
|
endif
|