cpython/Tools/buildbot/buildmsi.bat

21 lines
403 B
Batchfile
Raw Normal View History

2011-02-25 10:19:48 -04:00
@rem Used by the buildbot "buildmsi" step.
setlocal
2011-02-25 10:19:48 -04:00
set cwd=%CD%
2011-02-25 10:19:48 -04:00
@rem build release versions of things
call "%~dp0build.bat" -c Release
2011-02-25 10:19:48 -04:00
@rem build the documentation
call "%~dp0..\..\Doc\make.bat" htmlhelp
2011-02-25 10:19:48 -04:00
@rem build the MSI file
call "%VS100COMNTOOLS%..\..\VC\vcvarsall.bat" x86
cd "%~dp0..\..\PC"
2011-02-25 10:19:48 -04:00
nmake /f icons.mak
cd ..\Tools\msi
del *.msi
nmake /f msisupport.mak
%HOST_PYTHON% msi.py
cd "%cwd%"