11 lines
307 B
Batchfile
11 lines
307 B
Batchfile
@rem Used by the buildbot "clean" step.
|
|
call "%VS90COMNTOOLS%\..\..\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
|
|
vcbuild /clean pcbuild.sln "Release|x64"
|
|
vcbuild /clean pcbuild.sln "Debug|x64"
|
|
cd ..
|