2011-03-05 10:11:35 -04:00
|
|
|
@rem Used by the buildbot "clean" step.
|
2012-05-13 13:19:23 -03:00
|
|
|
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
|
2011-03-05 10:11:35 -04:00
|
|
|
@echo Deleting .pyc/.pyo files ...
|
|
|
|
del /s Lib\*.pyc Lib\*.pyo
|
2011-03-26 17:15:47 -03:00
|
|
|
@echo Deleting test leftovers ...
|
|
|
|
rmdir /s /q build
|
|
|
|
cd PCbuild
|
2012-05-14 00:45:57 -03: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 17:15:47 -03:00
|
|
|
cd ..
|