6bf4475ba4
Changelog: https://github.com/msgpack/msgpack-c/blob/master/CHANGELOG.md Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
561 B
Makefile
19 lines
561 B
Makefile
################################################################################
|
|
#
|
|
# msgpack
|
|
#
|
|
################################################################################
|
|
|
|
MSGPACK_VERSION = 3.2.0
|
|
MSGPACK_SITE = $(call github,msgpack,msgpack-c,cpp-$(MSGPACK_VERSION))
|
|
MSGPACK_LICENSE = BSL-1.0
|
|
MSGPACK_LICENSE_FILES = COPYING LICENSE_1_0.txt
|
|
MSGPACK_INSTALL_STAGING = YES
|
|
MSGPACK_CONF_OPTS = -DMSGPACK_BUILD_EXAMPLES=OFF -DMSGPACK_BUILD_TESTS=OFF
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
MSGPACK_CONF_OPTS += -DMSGPACK_ENABLE_SHARED=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|