]> git.saurik.com Git - wxWidgets.git/blob - wxPython/b.bat
Commented out hack for VC++ 5.0
[wxWidgets.git] / wxPython / b.bat
1 @echo off
2 setlocal
3
4 set FLAGS=USE_SWIG=1 IN_CVS_TREE=1
5
6
7 rem Use non-default python?
8 iff "%1" == "15" .or. "%1" == "20" .or. "%1" == "21" then
9 set PYTHON=c:\tools\python%1%\python.exe
10 shift
11 else
12 set PYTHON=python
13 endiff
14 set SETUP=%PYTHON% -u setup.py
15
16
17 %PYTHON% -c "import sys;print '\n', sys.version, '\n'"
18
19
20 rem "c" --> clean
21 iff "%1" == "c" then
22 shift
23 set CMD=%SETUP% %FLAGS% clean
24 set OTHERCMD=del wxPython\*.pyd
25
26 rem just remove the *.pyd's
27 elseiff "%1" == "d" then
28 shift
29 set CMD=del wxPython\*.pyd
30
31 rem "i" --> install
32 elseiff "%1" == "i" then
33 shift
34 set CMD=%SETUP% build install
35
36 rem "s" --> source dist
37 elseiff "%1" == "s" then
38 shift
39 set CMD=%SETUP sdist
40
41 rem "f" --> FINAL
42 elseiff "%1" == "f" then
43 shift
44 set CMD=%SETUP% %FLAGS% FINAL=1 build_ext --inplace %1 %2 %3 %4 %5 %6 %7 %8 %9
45
46 rem "h" --> HYBRID
47 elseiff "%1" == "h" then
48 shift
49 set CMD=%SETUP% %FLAGS% HYBRID=1 build_ext --inplace %1 %2 %3 %4 %5 %6 %7 %8 %9
50
51 rem (no command arg) --> normal build for development
52 else
53 set CMD=%SETUP% %FLAGS% HYBRID=0 build_ext --inplace --debug %1 %2 %3 %4 %5 %6 %7 %8 %9
54 endiff
55
56
57
58 echo %CMD%
59 %CMD%
60
61 iff "%OTHERCMD%" != "" then
62 echo %OTHERCMD%
63 %OTHERCMD%
64 endiff
65