mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
Qt Canvas Painter is an accelerated 2D painting solution for Qt Quick and QRhi-based render targets. Fixes: QTBUG-141976 Change-Id: I40f00c68d6334e2bbb7e4f35fc4bf12bb394e65e Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
76 lines
2.2 KiB
Clojure
76 lines
2.2 KiB
Clojure
DESCRIPTION = "Qt6 addon modules"
|
|
LICENSE = "MIT"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qt3d', '', d)} \
|
|
qt5compat \
|
|
qtapplicationmanager \
|
|
qtcanvaspainter \
|
|
qtcharts \
|
|
qtcoap \
|
|
qtconnectivity \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtdatavis3d', '', d)} \
|
|
qtdeviceutilities \
|
|
qtgraphs \
|
|
qtgrpc \
|
|
qthttpserver \
|
|
qtimageformats \
|
|
qtinterfaceframework \
|
|
qtlocation \
|
|
qtlottie \
|
|
qtmqtt \
|
|
qtmultimedia \
|
|
qtnetworkauth \
|
|
qtopcua \
|
|
qtpositioning \
|
|
qtquick3d \
|
|
qtquickdesigner-components \
|
|
qtquicktimeline \
|
|
qtremoteobjects \
|
|
qtscxml \
|
|
qtsensors \
|
|
qtserialbus \
|
|
qtserialbus-tools \
|
|
qtserialport \
|
|
qtshadertools \
|
|
qtspeech \
|
|
qtsvg \
|
|
qttasktree \
|
|
qttranslations \
|
|
qtvirtualkeyboard \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland', '', d)} \
|
|
qtwebchannel \
|
|
qtwebsockets \
|
|
"
|
|
|
|
RDEPENDS:${PN}:append:aarch64 = "\
|
|
qtquick3dphysics \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtpdf', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine qtwebview', '', d)} \
|
|
"
|
|
RDEPENDS:${PN}:append:arm = " qtquick3dphysics"
|
|
RDEPENDS:${PN}:append:armv6 = "\
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtpdf', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine qtwebview', '', d)} \
|
|
"
|
|
RDEPENDS:${PN}:append:armv7a = "\
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtpdf', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine qtwebview', '', d)} \
|
|
"
|
|
RDEPENDS:${PN}:append:armv7ve = "\
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtpdf', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine qtwebview', '', d)} \
|
|
"
|
|
RDEPENDS:${PN}:append:x86 = " qtquick3dphysics"
|
|
RDEPENDS:${PN}:append:x86-64 = "\
|
|
qtquick3dphysics \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'qtpdf', '', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine qtwebview', '', d)} \
|
|
"
|