cpython/Tools/buildbot/buildmsi.bat
Zachary Ware e12fa65744 Issue #21907: Improved the batch scripts provided for building Python.
The user-facing scripts in PCbuild have been updated to be easier to use
and the buildbot scripts in Tools\buildbot have been updated to use the
user-facing scripts in PCbuild wherever possible.
2014-07-07 13:39:59 -05:00

20 lines
403 B
Batchfile

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