]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/makedbg.bat
Create an NSView (in leiu of a real static bitmap class)
[wxWidgets.git] / wxPython / distrib / makedbg.bat
1 @echo off
2 rem Builds a zip containing debugging versions of wxWindows and wxPython
3 rem that could be unziped over a wxPython installation.
4
5 setlocal
6
7 iff "%1" == "15" then
8 set PCBUILD=c:\projects\Python-1.5.2\PCBuild
9 elseiff "%1" == "20" then
10 set PCBUILD=c:\projects\Python-2.0\PCBuild
11 else
12 echo Specivy Python version!!!
13 goto end
14 endiff
15
16 iff "%2" == "" then
17 echo Specify wxPython version!!!
18 goto end
19 endiff
20
21
22 mkdir wxPython-dbg
23 copy README.dbg.txt wxPython-dbg
24 copy %WXWIN%\lib\wx*d.dll wxPython-dbg
25 copy %WXWIN%\wxPython\wxPython\*_d.pyd wxPython-dbg
26 copy %PCBUILD%\python_d.exe wxPython-dbg
27 copy %PCBUILD%\python%1_d.dll wxPython-dbg
28
29 zip -r wxPython-dbg-%2-Py%1.zip wxPython-dbg
30
31 del /sx wxPython-dbg
32
33 :end