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