Mercurial > hg > sonic-annotator
diff deploy/win/build-64.bat @ 355:0b3c180d5e08
Update builds for VC2019 etc
author | Chris Cannam |
---|---|
date | Wed, 23 Oct 2019 09:52:21 +0100 |
parents | 228afe7eb408 |
children | d9d509d29fa1 |
line wrap: on
line diff
--- a/deploy/win/build-64.bat Tue Oct 08 14:56:20 2019 +0100 +++ b/deploy/win/build-64.bat Wed Oct 23 09:52:21 2019 +0100 @@ -5,18 +5,20 @@ set STARTPWD=%CD% -set QTDIR=C:\Qt\5.13.0\msvc2017_64 +set QTDIR=C:\Qt\5.13.1\msvc2017_64 if not exist %QTDIR% ( -@ echo Could not find 64-bit Qt +@ echo Could not find 64-bit Qt in %QTDIR% @ exit /b 2 ) -if not exist "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" ( +set vcvarsall="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" + +if not exist %vcvarsall% ( @ echo "Could not find MSVC vars batch file" @ exit /b 2 ) -call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64 +call %vcvarsall% amd64 set ORIGINALPATH=%PATH% set PATH=%PATH%;C:\Program Files (x86)\SMLNJ\bin;%QTDIR%\bin