view deploy/win/build-both.bat @ 351:228afe7eb408

CI updates
author Chris Cannam
date Fri, 06 Sep 2019 11:48:12 +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