First version of build scripts for Windows/AMD64 (no external
components are built yet, and 'kill_python' is disabled).
This commit is contained in:
parent
9201e7f1a6
commit
3608a163a6
|
@ -0,0 +1,5 @@
|
||||||
|
@rem Used by the buildbot "compile" step.
|
||||||
|
REM cmd /c Tools\buildbot\external.bat
|
||||||
|
call "%VS71COMNTOOLS%vsvars32.bat"
|
||||||
|
REM cmd /q/c Tools\buildbot\kill_python.bat
|
||||||
|
devenv.com /build ReleaseAMD64 PCbuild\pcbuild.sln
|
|
@ -0,0 +1,6 @@
|
||||||
|
@rem Used by the buildbot "clean" step.
|
||||||
|
REM call "%VS71COMNTOOLS%vsvars32.bat"
|
||||||
|
cd PCbuild
|
||||||
|
@echo Deleting .pyc/.pyo files ...
|
||||||
|
python.exe rmpyc.py
|
||||||
|
devenv.com /clean ReleaseAMD64 pcbuild.sln
|
|
@ -0,0 +1,3 @@
|
||||||
|
@rem Used by the buildbot "test" step.
|
||||||
|
cd PCbuild
|
||||||
|
call rt.bat -q -uall -rw
|
Loading…
Reference in New Issue