mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
The QML Script Compiler is a commercial drop-in replacement
for the cachegen tool to compile your QML script expressions
and functions to C++ ahead of time.
It is available only for commercial customers and source code
fetch needs proper ssh keys available for accessing the repository
at codereview.qt-project.org.
Usage of QML Script Compiler is not enabled by default, but if
enabled globally using ENABLE_QMLCOMPILER variable, all Qt modules
that have dependency to qtdeclarative are compiled using Qt QML Compiler.
Its usage can also be enabled or disabled by each individual recipe.
Task-number: QTBUG-95475
Change-Id: Iee8539ee8ddc17c70e9ed81ab3b4f242f9386586
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Reviewed-by: Pasi Petäjäjärvi <pasi.petajajarvi@qt.io>
(cherry picked from commit d0e7002304)
Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
91 lines
3.4 KiB
HTML
91 lines
3.4 KiB
HTML
PREFERRED_PROVIDER_udev = "systemd"
|
|
# use gold
|
|
DISTRO_FEATURES:append = " ld-is-gold"
|
|
# use systemd
|
|
DISTRO_FEATURES:append = " systemd"
|
|
DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
|
|
VIRTUAL-RUNTIME_init_manager = "systemd"
|
|
VIRTUAL-RUNTIME_initscripts = ""
|
|
# use wayland
|
|
DISTRO_FEATURES:append = " wayland"
|
|
|
|
INHERIT += "buildstats buildstats-summary"
|
|
INHERIT += "rm_work"
|
|
|
|
# default to commercial Qt
|
|
QT_EDITION = "commercial"
|
|
|
|
# enable Qt QML Compiler
|
|
ENABLE_QMLCOMPILER = "1"
|
|
|
|
# fast compression of SDK tar package
|
|
SDK_XZ_COMPRESSION_LEVEL = "-1"
|
|
|
|
SDK_ARCHIVE_TYPE:sdkmingw32 = "zip"
|
|
|
|
# be more strict with QA warnings, turn them all to errors:
|
|
EXTRA_QA = "\
|
|
ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \
|
|
textrel already-stripped incompatible-license files-invalid \
|
|
installed-vs-shipped compile-host-path install-host-path \
|
|
pn-overrides infodir build-deps \
|
|
unknown-configure-option symlink-to-sysroot multilib \
|
|
invalid-packageconfig host-user-contaminated uppercase-pn \
|
|
"
|
|
ERROR_QA:append = "${EXTRA_QA}"
|
|
WARN_QA:remove = "${EXTRA_QA}"
|
|
|
|
# enable thumb for broader test coverage (oe-core autobuilder doesn't have thumb enabled)
|
|
PREFERRED_ARM_INSTRUCTION_SET ?= "thumb"
|
|
ARM_INSTRUCTION_SET = "${PREFERRED_ARM_INSTRUCTION_SET}"
|
|
|
|
# enable webengine with commercial/proprietary features
|
|
DISTRO_FEATURES:append = " webengine"
|
|
LICENSE_FLAGS_WHITELIST = "commercial"
|
|
PACKAGECONFIG:append:pn-qtwebengine = " proprietary-codecs ffmpeg"
|
|
|
|
PACKAGECONFIG:append:pn-qtbase = "\
|
|
tslib kms gbm zstd libproxy gssapi vulkan mtdev cups \
|
|
sql-mysql sql-odbc sql-psql sql-sqlite journald brotli \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk', '', d)} \
|
|
"
|
|
|
|
# imageformats mng FIXME
|
|
PACKAGECONFIG:append:pn-qtimageformats = " jasper"
|
|
|
|
# enable examples for all Qt modules
|
|
PACKAGECONFIG:append:pn-qmlcompilerplus = " examples"
|
|
PACKAGECONFIG:append:pn-qt3d = " examples"
|
|
PACKAGECONFIG:append:pn-qt5compat = " examples"
|
|
PACKAGECONFIG:append:pn-qtbase = " examples"
|
|
PACKAGECONFIG:append:pn-qtcharts = " examples"
|
|
PACKAGECONFIG:append:pn-qtcoap = " examples"
|
|
PACKAGECONFIG:append:pn-qtconnectivity = " examples"
|
|
PACKAGECONFIG:append:pn-qtdatavis3d = " examples"
|
|
PACKAGECONFIG:append:pn-qtdeclarative = " examples"
|
|
PACKAGECONFIG:append:pn-qtimageformats = " examples"
|
|
PACKAGECONFIG:append:pn-qtmqtt = " examples"
|
|
PACKAGECONFIG:append:pn-qtmultimedia = " examples"
|
|
PACKAGECONFIG:append:pn-qtnetworkauth = " examples"
|
|
PACKAGECONFIG:append:pn-qtopcua = " examples"
|
|
PACKAGECONFIG:append:pn-qtpositioning = " examples"
|
|
PACKAGECONFIG:append:pn-qtquick3d = " examples"
|
|
PACKAGECONFIG:append:pn-qtquickdesigner-components = " examples"
|
|
PACKAGECONFIG:append:pn-qtquicktimeline = " examples"
|
|
PACKAGECONFIG:append:pn-qtremoteobjects = " examples"
|
|
PACKAGECONFIG:append:pn-qtscxml = " examples"
|
|
PACKAGECONFIG:append:pn-qtsensors = " examples"
|
|
PACKAGECONFIG:append:pn-qtserialbus = " examples"
|
|
PACKAGECONFIG:append:pn-qtserialport = " examples"
|
|
PACKAGECONFIG:append:pn-qtshadertools = " examples"
|
|
PACKAGECONFIG:append:pn-qtspeech = " examples"
|
|
PACKAGECONFIG:append:pn-qtsvg = " examples"
|
|
PACKAGECONFIG:append:pn-qttools = " examples"
|
|
PACKAGECONFIG:append:pn-qttranslations = " examples"
|
|
PACKAGECONFIG:append:pn-qtvirtualkeyboard = " examples"
|
|
PACKAGECONFIG:append:pn-qtwayland = " examples"
|
|
PACKAGECONFIG:append:pn-qtwebchannel = " examples"
|
|
PACKAGECONFIG:append:pn-qtwebengine = " examples"
|
|
PACKAGECONFIG:append:pn-qtwebsockets = " examples"
|
|
PACKAGECONFIG:append:pn-qtwebview = " examples"
|