mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
Needed for domoticz >= 2025.1:
b30d9e9436
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
558 B
Makefile
19 lines
558 B
Makefile
################################################################################
|
|
#
|
|
# jwt-cpp
|
|
#
|
|
################################################################################
|
|
|
|
JWT_CPP_VERSION = 0.7.2
|
|
JWT_CPP_SITE = https://github.com/Thalhammer/jwt-cpp/releases/download/v$(JWT_CPP_VERSION)
|
|
JWT_CPP_SOURCE = jwt-cpp-v$(JWT_CPP_VERSION).tar.gz
|
|
JWT_CPP_LICENSE = MIT
|
|
JWT_CPP_LICENSE_FILES = LICENSE
|
|
JWT_CPP_INSTALL_STAGING = YES
|
|
JWT_CPP_DEPENDENCIES = openssl
|
|
JWT_CPP_CONF_OPTS = \
|
|
-DJWT_BUILD_EXAMPLES=OFF \
|
|
-DJWT_BUILD_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|