package/qt6/qt6base: add support for xml 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:39 +02:00 committed by Thomas Petazzoni
parent a39e0b95e1
commit d243ec33ad
2 changed files with 11 additions and 0 deletions

View File

@ -27,4 +27,9 @@ config BR2_PACKAGE_QT6BASE_NETWORK
help
This options enables the Qt6Network library.
config BR2_PACKAGE_QT6BASE_XML
bool "XML module"
help
This options enables the Qt6Xml library.
endif

View File

@ -87,5 +87,11 @@ else
QT6BASE_CONF_OPTS += -DFEATURE_concurrent=OFF
endif
ifeq ($(BR2_PACKAGE_QT6BASE_XML),y)
QT6BASE_CONF_OPTS += -DFEATURE_xml=ON
else
QT6BASE_CONF_OPTS += -DFEATURE_xml=OFF
endif
$(eval $(cmake-package))
$(eval $(host-cmake-package))