mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
- Release Notes: https://github.com/nlohmann/json/releases/tag/v3.12.0 - updated LICENSE.MIT hash due to updated year Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
718 B
Makefile
20 lines
718 B
Makefile
################################################################################
|
|
#
|
|
# json-for-modern-cpp
|
|
#
|
|
################################################################################
|
|
|
|
JSON_FOR_MODERN_CPP_VERSION = 3.12.0
|
|
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_VALID = YES
|
|
|
|
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))
|