mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
Add new packagegroup for all commercial-only Qt addon modules and add new variable QT_COMMERCIAL_MODULES which can be used to control if the modules are included in the build. The same variable also turns on the use of Qt QML Compiler. Use common include file for the commercial modules. Pick-to: 6.3 6.2 Change-Id: I673a06685b44a5f0f5518ae51bc45956432739a4 Reviewed-by: Nicholas Bennett <nicholas.bennett@qt.io> Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
15 lines
335 B
BlitzBasic
15 lines
335 B
BlitzBasic
DESCRIPTION = "Qt6 modules"
|
|
LICENSE = "MIT"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
packagegroup-qt6-essentials \
|
|
packagegroup-qt6-addons \
|
|
${@bb.utils.contains('QT_COMMERCIAL_MODULES', '1', 'packagegroup-qt6-commercial-modules', '', d)} \
|
|
"
|