6e2b109e96
This bump includes compatibility with cmake 4.x: https://github.com/Tencent/rapidjson/commit/ebd87cb468fb4cb060b37e579718c4a4125416c1 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
654 B
Makefile
23 lines
654 B
Makefile
################################################################################
|
|
#
|
|
# rapidjson
|
|
#
|
|
################################################################################
|
|
|
|
RAPIDJSON_VERSION = 24b5e7a8b27f42fa16b96fc70aade9106cf7102f
|
|
RAPIDJSON_SITE = $(call github,Tencent,rapidjson,$(RAPIDJSON_VERSION))
|
|
RAPIDJSON_LICENSE = MIT
|
|
RAPIDJSON_LICENSE_FILES = license.txt
|
|
RAPIDJSON_CPE_ID_VENDOR = tencent
|
|
|
|
# rapidjson is a header-only C++ library
|
|
RAPIDJSON_INSTALL_TARGET = NO
|
|
RAPIDJSON_INSTALL_STAGING = YES
|
|
|
|
RAPIDJSON_CONF_OPTS = \
|
|
-DRAPIDJSON_BUILD_DOC=OFF \
|
|
-DRAPIDJSON_BUILD_EXAMPLES=OFF \
|
|
-DRAPIDJSON_BUILD_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|