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