package/qt6/qt6base: add support for concurrent module

Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Jesse Van Gavere 2022-08-26 15:54:38 +02:00 committed by Thomas Petazzoni
parent 26ebde7013
commit a39e0b95e1
2 changed files with 11 additions and 0 deletions

View File

@ -17,6 +17,11 @@ config BR2_PACKAGE_QT6BASE
if BR2_PACKAGE_QT6BASE
config BR2_PACKAGE_QT6BASE_CONCURRENT
bool "concurrent module"
help
This options enables the Qt6Concurrent library.
config BR2_PACKAGE_QT6BASE_NETWORK
bool "network module"
help

View File

@ -81,5 +81,11 @@ else
QT6BASE_CONF_OPTS += -DFEATURE_network=OFF
endif
ifeq ($(BR2_PACKAGE_QT6BASE_CONCURRENT),y)
QT6BASE_CONF_OPTS += -DFEATURE_concurrent=ON
else
QT6BASE_CONF_OPTS += -DFEATURE_concurrent=OFF
endif
$(eval $(cmake-package))
$(eval $(host-cmake-package))