mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
Release notes: https://github.com/nanomsg/nanomsg/releases/tag/1.2.1 https://github.com/nanomsg/nanomsg/releases/tag/1.2.2 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
627 B
Makefile
25 lines
627 B
Makefile
################################################################################
|
|
#
|
|
# nanomsg
|
|
#
|
|
################################################################################
|
|
|
|
NANOMSG_VERSION = 1.2.2
|
|
NANOMSG_SITE = $(call github,nanomsg,nanomsg,$(NANOMSG_VERSION))
|
|
NANOMSG_INSTALL_STAGING = YES
|
|
NANOMSG_LICENSE = MIT
|
|
NANOMSG_LICENSE_FILES = COPYING
|
|
NANOMSG_CONF_OPTS = -DNN_ENABLE_DOC=OFF -DNN_TESTS=OFF
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
NANOMSG_CONF_OPTS += -DNN_STATIC_LIB=ON
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NANOMSG_TOOLS),y)
|
|
NANOMSG_CONF_OPTS += -DNN_TOOLS=ON
|
|
else
|
|
NANOMSG_CONF_OPTS += -DNN_TOOLS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|