2011-03-05 14:11:35 +00:00
|
|
|
@rem Used by the buildbot "clean" step.
|
2012-05-13 16:19:23 +00:00
|
|
|
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
|
2011-03-05 14:11:35 +00:00
|
|
|
@echo Deleting .pyc/.pyo files ...
|
|
|
|
del /s Lib\*.pyc Lib\*.pyo
|
2011-03-26 20:15:47 +00:00
|
|
|
@echo Deleting test leftovers ...
|
|
|
|
rmdir /s /q build
|
|
|
|
cd PCbuild
|
2012-05-14 03:45:57 +00:00
|
|
|
msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64
|
|
|
|
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64
|
2011-03-26 20:15:47 +00:00
|
|
|
cd ..
|