Staging
v0.8.1
Revision 5d7e1d378ca76d3c33c649bf0651b6369da86887 authored by Antoine Pitrou on 24 June 2012, 20:38:23 UTC, committed by Antoine Pitrou on 24 June 2012, 20:38:23 UTC
1 parent 00081f3
Raw File
clean-amd64.bat
@rem Used by the buildbot "clean" step.
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
@echo Deleting .pyc/.pyo files ...
del /s Lib\*.pyc Lib\*.pyo
@echo Deleting test leftovers ...
rmdir /s /q build
cd PCbuild
msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64
cd ..
back to top