aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2021-11-15 14:25:56 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-11-17 06:40:26 +0000
commitcbb18566cc13fbc1514015f9c4506b63e8f71c00 (patch)
tree0165f0f57e534b540e708b28777b06958ce75ca8
parent0553668ac36b5c81627f1b66eb9ca3f9b58b593a (diff)
qmlcompiler: enable for internal builds
Anyone doing internal build should have access to the qml compiler, so we can then enable it by default. This will also enable it then for the release builds. Change-Id: I191c67cd1851780d8a05eb12947dd8cd348c6199 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io> (cherry picked from commit 603956ccb9baec9a8ea8b8a73aae08e20871d9ec) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--meta-boot2qt/classes/internal-build.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-boot2qt/classes/internal-build.bbclass b/meta-boot2qt/classes/internal-build.bbclass
index b56ae8be..384efccf 100644
--- a/meta-boot2qt/classes/internal-build.bbclass
+++ b/meta-boot2qt/classes/internal-build.bbclass
@@ -36,6 +36,8 @@ python enable_internal_build () {
# enable qtsaferenderer for internal builds
e.data.appendVar('DISTRO_FEATURES_BACKFILL', ' qtsaferenderer')
+ # enable qmlcompiler
+ e.data.setVar('ENABLE_QMLCOMPILER', "1")
e.data.setVar('QT_INTERNAL_BUILD', "1")
e.data.prependVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.intra.qt.io/sstate-caches/${DISTRO_CODENAME}/PATH")