mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-04 16:10:12 +00:00
Change-Id: Id17153514fc68d0c24a571c4fde3c589afd37bf1 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
20 lines
1.1 KiB
SQL
20 lines
1.1 KiB
SQL
python __anonymous () {
|
|
modules = [
|
|
'gn', 'qt3d', 'qt5compat', 'qtapplicationmanager', 'qtbase', 'qtcharts',
|
|
'qtcoap', 'qtconnectivity', 'qtdatavis3d', 'qtdeclarative', 'qtdeviceutilities',
|
|
'qtgrpc', 'qthttpserver', 'qtimageformats', 'qtinterfaceframework', 'qtlanguageserver',
|
|
'qtlocation', 'qtlottie', 'qtmqtt', 'qtmultimedia', 'qtnetworkauth', 'qtopcua', 'qtpdf',
|
|
'qtpositioning', 'qtquick3d', 'qtquick3dphysics', 'qtquicktimeline', 'qtremoteobjects',
|
|
'qtscxml', 'qtsensors', 'qtserialbus', 'qtserialport', 'qtshadertools', 'qtspeech',
|
|
'qtsvg', 'qttools', 'qttranslations', 'qtvirtualkeyboard', 'qtwayland', 'qtwebchannel',
|
|
'qtwebengine', 'qtwebsockets', 'qtwebview'
|
|
]
|
|
|
|
module = d.getVar('BPN')
|
|
if module in modules:
|
|
d.setVar('QT_GIT', d.getVar('QT_COMMERCIAL_GIT'))
|
|
d.setVar('QT_GIT_PROTOCOL', d.getVar('QT_COMMERCIAL_GIT_PROTOCOL'))
|
|
d.setVar('QT_MODULE_REPO', 'tqtc-%s.git' % d.getVar('QT_MODULE'))
|
|
d.setVar('QT_MODULE_BRANCH', 'tqtc/lts-%s-opensource' % d.getVar('QT_MODULE_BRANCH'))
|
|
}
|