25 lines
691 B
Batchfile
25 lines
691 B
Batchfile
@rem Used by the buildbot "buildmsi" step.
|
|
|
|
cmd /c Tools\buildbot\external.bat
|
|
@rem build release versions of things
|
|
call "%VS90COMNTOOLS%vsvars32.bat"
|
|
if not exist ..\db-4.4.20\build_win32\release\libdb44s.lib (
|
|
vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
|
|
)
|
|
|
|
@rem build Python
|
|
cmd /q/c Tools\buildbot\kill_python.bat
|
|
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
|
|
|
|
@rem build the documentation
|
|
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
|
|
"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\pydoc.hhp
|
|
|
|
@rem buold the MSI file
|
|
cd PC
|
|
nmake /f icons.mak
|
|
cd ..\Tools\msi
|
|
del *.msi
|
|
nmake /f msisupport.mak
|
|
%HOST_PYTHON% msi.py
|