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:
parent
26ebde7013
commit
a39e0b95e1
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user