summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean.bat
blob: cb6f99ed2f9fe553571bd713c16efaf2ac905dda (plain)
1
2
3
4
5
6
7
8
9
10
@rem Used by the buildbot "clean" step.
call "%VS100COMNTOOLS%vsvars32.bat"
@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=x86
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x86
cd ..