From 33139e5dee6557adf175c2c8cb65b478f1cc0d61 Mon Sep 17 00:00:00 2001 From: kleuter Date: Thu, 4 Oct 2018 14:36:18 +0200 Subject: [PATCH] compile_win fix --- 5.6.3/compile_win.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5.6.3/compile_win.pl b/5.6.3/compile_win.pl index c4919a9..3713812 100644 --- a/5.6.3/compile_win.pl +++ b/5.6.3/compile_win.pl @@ -18,7 +18,7 @@ my $batfile = 'compile_win.bat'; open BAT, '>', $batfile; -printLineToBat ("SET PATH=%PATH%;bin"); # add bin folder to the path for 7z and wget +printLineToBat ("SET PATH=%PATH%;%cd%\\bin"); # add bin folder to the path for 7z and wget printLineToBat ("CALL \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat\" $arch"); #printLineToBat ("CALL \"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\\vcvarsall.bat\" $arch"); # VS2013 printLineToBat ("cd qtbase");