blob: f4643a80ee81efceeda41c8e28fe535d6000a96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
@echo off
rem Used by the buildbot "clean" step.
setlocal
set root=%~dp0..\..
set pcbuild=%root%\PCbuild
echo.Attempting to kill Pythons...
for %%k in (kill_python.exe
kill_python_d.exe
amd64\kill_python.exe
amd64\kill_python_d.exe
) do (
if exist "%pcbuild%\%%k" (
echo.Calling %pcbuild%\%%k...
"%pcbuild%\%%k"
)
)
if "%1" == "x64" (
set vcvars_target=x86_amd64
set platform_target=x64
) else (
set vcvars_target=x86
set platform_target=x86
)
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" %vcvars_target%
echo Deleting .pyc/.pyo files ...
del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo"
echo Deleting test leftovers ...
rmdir /s /q "%root%\build"
msbuild /target:clean "%pcbuild%\pcbuild.sln" /p:Configuration=Release /p:PlatformTarget=%platform_target%
msbuild /target:clean "%pcbuild%\pcbuild.sln" /p:Configuration=Debug /p:PlatformTarget=%platform_target%
|