mirror of https://github.com/qt/qtbase.git
Fix handling of QT_PATH_ANDROID_ABI_xxxx in android multi-abi tests
Fix 'IN_LISTS' typo, should be IN LISTS. Pick-to: 6.5 6.6 Change-Id: Ia0bd1bf45922b2c9c1779e03b40dad6eab97eef1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
97268742e4
commit
f0ae4b07eb
|
@ -116,7 +116,7 @@ include("${_Qt6CTestMacros}")
|
||||||
# Qt::Gui is the prerequisite for all Android tests.
|
# Qt::Gui is the prerequisite for all Android tests.
|
||||||
if(QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS AND NOT NO_GUI)
|
if(QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS AND NOT NO_GUI)
|
||||||
unset(multi_abi_vars)
|
unset(multi_abi_vars)
|
||||||
foreach(abi IN_LISTS QT_ANDROID_ABIS)
|
foreach(abi IN LISTS QT_ANDROID_ABIS)
|
||||||
list(APPEND multi_abi_vars "-DQT_PATH_ANDROID_ABI_${abi}=${QT_PATH_ANDROID_ABI_${abi}}")
|
list(APPEND multi_abi_vars "-DQT_PATH_ANDROID_ABI_${abi}=${QT_PATH_ANDROID_ABI_${abi}}")
|
||||||
endforeach()
|
endforeach()
|
||||||
if(QT_ANDROID_BUILD_ALL_ABIS)
|
if(QT_ANDROID_BUILD_ALL_ABIS)
|
||||||
|
|
Loading…
Reference in New Issue