summaryrefslogtreecommitdiffstats
path: root/buildinfo.pl
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2017-12-19 21:38:35 +0100
committerArno <arno@disconnect.de>2017-12-19 21:51:42 +0100
commitc0d9d2f61b53b42657ac9cc9b601cab5f308ac10 (patch)
treecd85ecd3da2180be21c3a1c07fbd42b4546d5201 /buildinfo.pl
parent4b828d497a5c0b99a5ce34a3f9a607ddd7e7d1d7 (diff)
downloadShemovCleaner-c0d9d2f61b53b42657ac9cc9b601cab5f308ac10.tar.gz
ShemovCleaner-c0d9d2f61b53b42657ac9cc9b601cab5f308ac10.tar.bz2
ShemovCleaner-c0d9d2f61b53b42657ac9cc9b601cab5f308ac10.zip
Qt update to 5.10
Wow, what a mess! Tried to update QT with this installer thingy, but that wreaked total havoc. I installed several compilers and QT versions, but most of the time QtCreator marked the QT header files as missing. Long story short: In the end I removed everyting, downloaded the online installer and "did it again". This commit fixes some paths in the build scripts.
Diffstat (limited to 'buildinfo.pl')
-rw-r--r--buildinfo.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/buildinfo.pl b/buildinfo.pl
index 057a76c..5ade7b2 100644
--- a/buildinfo.pl
+++ b/buildinfo.pl
@@ -72,9 +72,10 @@ unlink ("shemovclenaner.cpp");
rename ("shemovcleaner2.cpp", "shemovcleaner.cpp");
open (my $batch, '>', "make.cmd");
-print $batch 'PATH="C:\Qt\5.6\mingw49_32\bin;C:\Qt\Tools\mingw492_32\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\OpenVPN\bin;C:\Progr Files (x86)\GNU\GnuPG\pub;C:\Program Files\Git\cmd;C:\psql\9.5\lib;C:\psql\9.5\bin;C:\psql\9.5\include"', "\n";
-print $batch 'C:\Qt\5.6\mingw49_32\bin\qmake.exe ShemovCleaner.pro -r -spec win32-g++', "\n";
-print $batch 'C:\Qt\Tools\mingw492_32\bin\mingw32-make.exe -j 5', "\n";
+print $batch 'PATH="C:\Qt\5.10.0\mingw53_32\bin;C:\Qt\Tools\mingw530_32\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\OpenVPN\bin;C:\Progr Files (x86)\GNU\GnuPG\pub;C:\Program Files\Git\cmd;C:\psql\10.1\lib;C:\psql\10.1\bin;C:\psql\10.1include"', "\n";
+print $batch 'C:\Qt\5.10.0\mingw53_32\bin\qmake.exe ShemovCleaner.pro -r -spec win32-g++', "\n";
+//print $batch 'C:\Qt\5.10.0\mingw53_32\bin\qmake.exe ShemovCleaner.pro', "\n";
+print $batch 'C:\Qt\Tools\mingw530_32\bin\mingw32-make.exe -j 5', "\n";
print $batch 'copy /Y release\ShemovCleaner.exe ', $finaldest;
close($batch);