mirror of
https://github.com/thead-yocto-mirror/meta-qt5
synced 2026-09-02 19:12:50 +02:00
Change qmake.bbclass to support building native and nativesdk packages, so that qmake or qt5-module can be inherited and BBCLASSEXTEND used to create native and nativesdk packages. qtxmlpatterns and qtdeclarative native and nativesdk modules are required for Qt Quick Compiler. Signed-off-by: Samuli Piippo <samuli.piippo@theqtcompany.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
24 lines
355 B
Plaintext
24 lines
355 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
|
|
}
|
|
|
|
do_install_class-native() {
|
|
qmake5_base_native_do_install
|
|
}
|
|
|
|
do_install_class-nativesdk() {
|
|
qmake5_base_nativesdk_do_install
|
|
}
|