nsis: Check for newer Windows build
Follow-up to #8321, so we only claim to support what Qt actually officially does.
This commit is contained in:
parent
26b4ec6cef
commit
8cf9cc9f1b
|
|
@ -439,11 +439,11 @@ Function .onInit
|
||||||
Goto _os_check_pass
|
Goto _os_check_pass
|
||||||
${ElseIf} ${IsNativeAMD64} ; Windows 10 has no x86_64 emulation on arm64
|
${ElseIf} ${IsNativeAMD64} ; Windows 10 has no x86_64 emulation on arm64
|
||||||
${AndIf} ${AtLeastWin10}
|
${AndIf} ${AtLeastWin10}
|
||||||
${AndIf} ${AtLeastBuild} 14393 ; Windows 10 1607 (also in error message below)
|
${AndIf} ${AtLeastBuild} 17763 ; Windows 10 1809 (also in error message below)
|
||||||
Goto _os_check_pass
|
Goto _os_check_pass
|
||||||
${EndIf}
|
${EndIf}
|
||||||
MessageBox MB_OK|MB_ICONSTOP "This version of ${PRODUCT_NAME} requires a 64-bit$\r$\n\
|
MessageBox MB_OK|MB_ICONSTOP "This version of ${PRODUCT_NAME} requires a 64-bit$\r$\n\
|
||||||
version of Windows 10 1607 or later."
|
version of Windows 10 1809 or later."
|
||||||
Abort
|
Abort
|
||||||
_os_check_pass:
|
_os_check_pass:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue