mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Removed patch which is included in this release. Backported bump to fix cmake 4 compatibility. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
670 B
Makefile
23 lines
670 B
Makefile
################################################################################
|
|
#
|
|
# oatpp
|
|
#
|
|
################################################################################
|
|
|
|
OATPP_VERSION = 1.3.1
|
|
OATPP_SITE = $(call github,oatpp,oatpp,$(OATPP_VERSION))
|
|
OATPP_LICENSE = Apache-2.0
|
|
OATPP_LICENSE_FILES = LICENSE
|
|
OATPP_CONF_OPTS = -DBUILD_SHARED_LIBS=OFF -DOATPP_BUILD_TESTS=OFF
|
|
OATPP_INSTALL_STAGING = YES
|
|
# Only builds a static lib and headers
|
|
OATPP_INSTALL_TARGET = NO
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS_NPTL),y)
|
|
OATPP_CONF_OPTS += -DOATPP_COMPAT_BUILD_NO_SET_AFFINITY=OFF
|
|
else
|
|
OATPP_CONF_OPTS += -DOATPP_COMPAT_BUILD_NO_SET_AFFINITY=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|