Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
@@ -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
@@ -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))