Mercurial > hg > sonic-annotator
view deploy/win/build-both.bat @ 368:d9d509d29fa1
Update Qt path
author | Chris Cannam |
---|---|
date | Tue, 19 May 2020 08:52:01 +0100 |
parents | c7f2b178d220 |
children | a2c5ca6b8785 |
line wrap: on
line source
rem Run this from within the top-level dir: deploy\win\build-and-package.bat set STARTPWD=%CD% if not exist "C:\Program Files (x86)\SMLNJ\bin" ( @ echo Could not find SML/NJ, required for Repoint @ exit /b 2 ) set ORIGINALPATH=%PATH% set PATH=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin;%PATH% @echo "" @echo Rebuilding 32-bit cd %STARTPWD% del /q /s build_win32 call .\deploy\win\build-32.bat if %errorlevel% neq 0 exit /b %errorlevel% @echo Rebuilding 64-bit cd %STARTPWD% del /q /s build_win64 call .\deploy\win\build-64.bat if %errorlevel% neq 0 exit /b %errorlevel% set PATH=%ORIGINALPATH% @echo Done