buildmsi.bat 403 Bytes
Newer Older
1
@rem Used by the buildbot "buildmsi" step.
2
setlocal
3

4
set cwd=%CD%
5
@rem build release versions of things
6
call "%~dp0build.bat" -c Release
7 8

@rem build the documentation
9
call "%~dp0..\..\Doc\make.bat" htmlhelp
10 11

@rem build the MSI file
12 13
call "%VS100COMNTOOLS%..\..\VC\vcvarsall.bat" x86
cd "%~dp0..\..\PC"
14 15 16 17 18 19
nmake /f icons.mak
cd ..\Tools\msi
del *.msi
nmake /f msisupport.mak
%HOST_PYTHON% msi.py

20
cd "%cwd%"