You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
################################################################################
|
|
#
|
|
# libcpprestsdk
|
|
#
|
|
################################################################################
|
|
|
|
LIBCPPRESTSDK_VERSION = 2.10.18
|
|
LIBCPPRESTSDK_SITE = $(call github,Microsoft,cpprestsdk,$(LIBCPPRESTSDK_VERSION))
|
|
LIBCPPRESTSDK_LICENSE = MIT
|
|
LIBCPPRESTSDK_LICENSE_FILES = license.txt
|
|
LIBCPPRESTSDK_SUBDIR = Release
|
|
LIBCPPRESTSDK_INSTALL_STAGING = YES
|
|
LIBCPPRESTSDK_DEPENDENCIES += host-pkgconf boost openssl
|
|
LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF -DBUILD_SAMPLES=OFF
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBCPPRESTSDK_CONF_OPTS += \
|
|
-DBoost_USE_STATIC_LIBS=ON \
|
|
-DBoost_USE_STATIC_RUNTIME=ON
|
|
endif
|
|
|
|
LIBCPPRESTSDK_CXXFLAGS = $(TARGET_CXXFLAGS)
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
LIBCPPRESTSDK_CXXFLAGS += -latomic
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBCPPRESTSDK_DEPENDENCIES += zlib
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_COMPRESSION=OFF
|
|
# brotli needs compression
|
|
ifeq ($(BR2_PACKAGE_BROTLI),y)
|
|
LIBCPPRESTSDK_DEPENDENCIES += brotli
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_BROTLI=OFF
|
|
else
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_BROTLI=ON
|
|
endif
|
|
else
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_COMPRESSION=ON
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBSOCKETPP),y)
|
|
LIBCPPRESTSDK_DEPENDENCIES += websocketpp
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_WEBSOCKETS=OFF
|
|
else
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_WEBSOCKETS=ON
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
|
LIBCPPRESTSDK_CXXFLAGS += -O0
|
|
endif
|
|
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCMAKE_CXX_FLAGS="$(LIBCPPRESTSDK_CXXFLAGS)"
|
|
|
|
$(eval $(cmake-package))
|
|
|