mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
Qt module examples need to follow the same COMPATIBLE_MACHINE limitations as the module itself. Fixes: QTBUG-140246 Change-Id: I0cf68adc32c384a96517eede32972b42c53b7971 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
25 lines
622 B
BlitzBasic
25 lines
622 B
BlitzBasic
LICENSE = "The-Qt-Company-Commercial | BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://LICENSES/BSD-3-Clause.txt;md5=cb40fa7520502d8c7a3aea47cae1316c \
|
|
file://LICENSES/LicenseRef-Qt-Commercial.txt;md5=40a1036f91cefc0e3fabad241fb5f187 \
|
|
"
|
|
|
|
inherit qt6-cmake
|
|
|
|
COMPATIBLE_MACHINE = "(-)"
|
|
COMPATIBLE_MACHINE:aarch64 = "(.*)"
|
|
COMPATIBLE_MACHINE:arm = "(.*)"
|
|
COMPATIBLE_MACHINE:x86 = "(.*)"
|
|
COMPATIBLE_MACHINE:x86-64 = "(.*)"
|
|
|
|
QT_MODULE = "qtquick3dphysics"
|
|
|
|
include recipes-qt/qt6/qt6-git.inc
|
|
include recipes-qt/qt6/qt6-examples.inc
|
|
|
|
DEPENDS += "\
|
|
qtdeclarative-native \
|
|
qtquick3d-native \
|
|
qtquick3dphysics \
|
|
"
|