9c5f47fb36
This release fixes two more bug introduced in release 3.10.0: the extended diagnostics triggered assertions when used with update() or when inserting elements into arrays. All changes are backward-compatible. Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
20 lines
743 B
Makefile
20 lines
743 B
Makefile
################################################################################
|
|
#
|
|
# json-for-modern-cpp
|
|
#
|
|
################################################################################
|
|
|
|
JSON_FOR_MODERN_CPP_VERSION = 3.10.3
|
|
JSON_FOR_MODERN_CPP_SOURCE = json-$(JSON_FOR_MODERN_CPP_VERSION).tar.gz
|
|
JSON_FOR_MODERN_CPP_SITE = $(call github,nlohmann,json,v$(JSON_FOR_MODERN_CPP_VERSION))
|
|
JSON_FOR_MODERN_CPP_LICENSE = MIT
|
|
JSON_FOR_MODERN_CPP_LICENSE_FILES = LICENSE.MIT
|
|
JSON_FOR_MODERN_CPP_CPE_ID_VENDOR = json-for-modern-cpp_project
|
|
|
|
JSON_FOR_MODERN_CPP_INSTALL_STAGING = YES
|
|
# header only library
|
|
JSON_FOR_MODERN_CPP_INSTALL_TARGET = NO
|
|
JSON_FOR_MODERN_CPP_CONF_OPTS = -DJSON_BuildTests=OFF -DJSON_MultipleHeaders=ON
|
|
|
|
$(eval $(cmake-package))
|