From 11a23bce317209b2e58b0b9d74916f5e1e277db4 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Tue, 22 Nov 2022 19:52:22 +0200 Subject: [PATCH 20/20] installer_cross: Build all of Qt6-client assuming Win10+ See osdn #46090 Signed-off-by: Marko Lindqvist --- windows/installer_cross/winbuild.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/windows/installer_cross/winbuild.sh b/windows/installer_cross/winbuild.sh index 2f27d9d504..786c8245c4 100755 --- a/windows/installer_cross/winbuild.sh +++ b/windows/installer_cross/winbuild.sh @@ -10,7 +10,7 @@ # Version 2.4.1 (09-Jun-22) WINBUILD_VERSION="2.4.0" -MIN_WINVER=0x0601 # Windows 7 +MIN_WINVER=0x0601 # Windows 7, Qt6-client build overrides this CROSSER_FEATURE_LEVEL=2.5 if test "x$1" = x || test "x$1" = "x-h" || test "x$1" = "x--help" ; then @@ -84,7 +84,8 @@ elif test "x$2" != "x" ; then qt5) FCMP="qt" QTVER="Qt5" ;; qt6) FCMP="qt" - QTVER="Qt6" ;; + QTVER="Qt6" + MIN_WINVER="0x0A00" ;; # Qt6 requires Win10 anyway *) echo "Unknown gui \"$2\"!" >&2 exit 1 ;; esac -- 2.35.1