Skip to content

Commit 188348d

Browse files
committed
replace elseif with else to fix the issue blocking creation of release apks
1 parent 5a62962 commit 188348d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AddQtAndroidApk.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ macro(add_qt_android_apk TARGET SOURCE_TARGET)
279279
# determine the build type to pass to androiddeployqt
280280
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug" AND NOT ARG_KEYSTORE)
281281
set(QT_ANDROID_BUILD_TYPE --debug)
282-
elseif()
282+
else()
283283
set(QT_ANDROID_BUILD_TYPE --release)
284284
endif()
285285

0 commit comments

Comments
 (0)