From 0cf57dd277cb28075b6350bb5e6694a37543fbff Mon Sep 17 00:00:00 2001 From: kleuter Date: Tue, 6 Aug 2024 17:46:22 +0200 Subject: [PATCH] use VS2022 for Qt 6.7.2 --- 6.7.2/compile_win.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6.7.2/compile_win.pl b/6.7.2/compile_win.pl index 86d575a..79b599e 100644 --- a/6.7.2/compile_win.pl +++ b/6.7.2/compile_win.pl @@ -35,7 +35,7 @@ my $batfile = 'compile_win.bat'; open BAT, '>', $batfile; printLineToBat ("SET PATH=%PATH%;%cd%\\_tools;%cd%\\_tools\\cmake\\bin"); # add folders to the path for 7z, wget, cmake, etc -printLineToBat ("CALL \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat\" $arch"); +printLineToBat ("CALL \"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat\" $arch"); printLineToBat ("SET _ROOT=%cd%"); printLineToBat ("SET PATH=%_ROOT%\\qtbase\\bin;%_ROOT%\\gnuwin32\\bin;%PATH%"); # http://doc.qt.io/qt-5/windows-building.html printLineToBat ("SET OPENSSL_LIBS=-lUser32 -lAdvapi32 -lGdi32 -llibcrypto -llibssl");