e378e8d33e
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services. This package is licensed under the MIT package and depends on BOOST and OpenSSL/LibreSSL. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
512 B
Makefile
16 lines
512 B
Makefile
################################################################################
|
|
#
|
|
# libcpprestsdk
|
|
#
|
|
################################################################################
|
|
|
|
LIBCPPRESTSDK_VERSION = v2.10.1
|
|
LIBCPPRESTSDK_SITE = $(call github,Microsoft,cpprestsdk,$(LIBCPPRESTSDK_VERSION))
|
|
LIBCPPRESTSDK_LICENSE = MIT
|
|
LIBCPPRESTSDK_LICENSE_FILES = license.txt
|
|
LIBCPPRESTSDK_SUBDIR = Release
|
|
LIBCPPRESTSDK_DEPENDENCIES += boost openssl zlib
|
|
LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF
|
|
|
|
$(eval $(cmake-package))
|