mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-02-23 03:05:40 +00:00
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
20 lines
700 B
Makefile
20 lines
700 B
Makefile
################################################################################
|
|
#
|
|
# libcpprestsdk
|
|
#
|
|
################################################################################
|
|
|
|
LIBCPPRESTSDK_VERSION = v2.10.10
|
|
LIBCPPRESTSDK_SITE = $(call github,Microsoft,cpprestsdk,$(LIBCPPRESTSDK_VERSION))
|
|
LIBCPPRESTSDK_LICENSE = MIT
|
|
LIBCPPRESTSDK_LICENSE_FILES = license.txt
|
|
LIBCPPRESTSDK_SUBDIR = Release
|
|
LIBCPPRESTSDK_DEPENDENCIES += host-pkgconf boost openssl zlib
|
|
LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF -DCPPREST_EXCLUDE_WEBSOCKETS=ON -DBUILD_SAMPLES=OFF
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
LIBCPPRESTSDK_CONF_OPTS += -DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) -latomic"
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|