mirror of
https://github.com/thead-yocto-mirror/meta-qt5
synced 2026-09-04 13:14:36 +02:00
:Release Notes: Add optional Qt-Tools module. :Detailed Notes: Qt provide optional Qt-Tools like "lrelease", etc. In absence of these tools one can not have i18n and l10n changes automated in build. Adding "qttools-native" to "meta-qt5" Open Embedded layer provides those tools. Using Qt-Tools i18n and l10n changes can be auomated. :Testing Performed: :QA Notes: :Issues Addressed: [GF-11028] Enable build of Qt localization tools in the Qt component Change-Id: Ieb679249a05501a6ccb25108903a0fd48d4014f0
16 lines
219 B
Plaintext
16 lines
219 B
Plaintext
#
|
|
# QMake variables for Qt
|
|
#
|
|
inherit qmake5_base
|
|
|
|
QT5TOOLSDEPENDS ?= "qtbase-native"
|
|
DEPENDS_prepend = "${QT5TOOLSDEPENDS} "
|
|
|
|
do_configure() {
|
|
qmake5_base_do_configure
|
|
}
|
|
|
|
do_install() {
|
|
qmake5_base_do_install
|
|
}
|