-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild_all.bat
42 lines (40 loc) · 1.02 KB
/
build_all.bat
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
34
35
36
37
38
39
40
41
42
rem Sadly Python 2.5 requires an earlier MSSDK.
set mssdk=c:\mssdk\6.0
py -2.5 setup.py -q build
@if errorlevel 1 goto failed
rem And the rest work with 7.1
set mssdk=c:\mssdk\7.1
py -2.6-32 setup.py -q build
@if errorlevel 1 goto failed
py -2.6 setup.py -q build
@if errorlevel 1 goto failed
py -2.7-32 setup.py -q build
@if errorlevel 1 goto failed
py -2.7 setup.py -q build
@if errorlevel 1 goto failed
rem py3k
py -3.1-32 setup3.py -q build
@if errorlevel 1 goto failed
py -3.1 setup3.py -q build
@if errorlevel 1 goto failed
py -3.2-32 setup3.py -q build
@if errorlevel 1 goto failed
py -3.2 setup3.py -q build
@if errorlevel 1 goto failed
py -3.3-32 setup3.py -q build
@if errorlevel 1 goto failed
py -3.3 setup3.py -q build
@if errorlevel 1 goto failed
py -3.4-32 setup3.py -q build
@if errorlevel 1 goto failed
py -3.4 setup3.py -q build
@if errorlevel 1 goto failed
py -3.5-32 setup3.py -q build
@if errorlevel 1 goto failed
py -3.5 setup3.py -q build
@if errorlevel 1 goto failed
goto xit
:failed
@echo Oops - failed!
goto xit
:xit