87577a92aa
This release fixes two bugs introduced in release 3.10.0 and fixes the conversion of std::filesystem::path. All changes are backward-compatible. https://github.com/nlohmann/json/releases/tag/v3.10.4 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.4
|
|
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))
|