meta-digi-dey: add QT6 support
https://onedigi.atlassian.net/browse/DEL-8347 Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
d8817e9f46
commit
0368bb6b4e
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Copyright (c) 2023, Digi International Inc.
|
||||||
|
|
||||||
|
inherit populate_sdk_qt6_base
|
||||||
|
|
||||||
|
TOOLCHAIN_HOST_TASK:append = " nativesdk-packagegroup-qt6-toolchain-host"
|
||||||
|
TOOLCHAIN_TARGET_TASK:append = " packagegroup-qt6-modules"
|
||||||
|
|
@ -7,6 +7,8 @@
|
||||||
# Copyright (c) 2023, Digi International Inc.
|
# Copyright (c) 2023, Digi International Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
QT_AVAILABLE = "${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'qt5-layer', 'true', 'false', d)}"
|
QT_AVAILABLE = "${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'qt5-layer qt6-layer', 'true', 'false', d)}"
|
||||||
QT_VERSION = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'qt5-layer', 'qt5', '', d)}"
|
QT_VERSION = \
|
||||||
|
"${@bb.utils.contains('BBFILE_COLLECTIONS', 'qt6-layer', 'qt6', \
|
||||||
|
bb.utils.contains('BBFILE_COLLECTIONS', 'qt5-layer', 'qt5', '', d), d)}"
|
||||||
QT_POPULATE_SDK = "${@oe.utils.vartrue('QT_AVAILABLE', 'populate_sdk_${QT_VERSION}', '', d)}"
|
QT_POPULATE_SDK = "${@oe.utils.vartrue('QT_AVAILABLE', 'populate_sdk_${QT_VERSION}', '', d)}"
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,10 @@ BBFILES_DYNAMIC += " \
|
||||||
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
|
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/*/*/*.bbappend \
|
||||||
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/${DEY_BUILD_PLATFORM}/*/*/*.bb \
|
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/${DEY_BUILD_PLATFORM}/*/*/*.bb \
|
||||||
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/${DEY_BUILD_PLATFORM}/*/*/*.bbappend \
|
qt5-layer:${LAYERDIR}/dynamic-layers/qt5-layer/${DEY_BUILD_PLATFORM}/*/*/*.bbappend \
|
||||||
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/*/*/*.bb \
|
||||||
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/*/*/*.bbappend \
|
||||||
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/${DEY_BUILD_PLATFORM}/*/*/*.bb \
|
||||||
|
qt6-layer:${LAYERDIR}/dynamic-layers/qt6-layer/${DEY_BUILD_PLATFORM}/*/*/*.bbappend \
|
||||||
"
|
"
|
||||||
|
|
||||||
BBFILE_COLLECTIONS += "digi-dey"
|
BBFILE_COLLECTIONS += "digi-dey"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Copyright (c) 2023, Digi International Inc.
|
||||||
|
|
||||||
|
# qtdeviceutilities provides a networksettings module that depends
|
||||||
|
# on "connman". This conflicts with NetworkManager
|
||||||
|
RDEPENDS:${PN}:remove:dey = "qtdeviceutilities"
|
||||||
Loading…
Reference in New Issue