]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
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 | ||
6 | mkdir wxPython-dbg | |
7 | copy README.dbg.txt wxPython-dbg | |
8 | copy %WXWIN%\lib\wx*d.dll wxPython-dbg | |
9 | copy %WXWIN%\wxPython\wxPython\*.pyd wxPython-dbg | |
10 | ||
11 | zip -r wxPython-dbg-%1.zip wxPython-dbg | |
12 | ||
13 | del /sx wxPython-dbg | |
14 |