X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..fb93b610c5991b12bd6404fe1fc08fd60a30615c:/wxPython/distrib/makedbg.bat diff --git a/wxPython/distrib/makedbg.bat b/wxPython/distrib/makedbg.bat index f4618328df..f738789ffa 100755 --- a/wxPython/distrib/makedbg.bat +++ b/wxPython/distrib/makedbg.bat @@ -2,13 +2,32 @@ rem Builds a zip containing debugging versions of wxWindows and wxPython rem that could be unziped over a wxPython installation. +setlocal + +iff "%1" == "15" then + set PCBUILD=c:\projects\Python-1.5.2\PCBuild +elseiff "%1" == "20" then + set PCBUILD=c:\projects\Python-2.0\PCBuild +else + echo Specivy Python version!!! + goto end +endiff + +iff "%2" == "" then + echo Specify wxPython version!!! + goto end +endiff + mkdir wxPython-dbg copy README.dbg.txt wxPython-dbg copy %WXWIN%\lib\wx*d.dll wxPython-dbg -copy %WXWIN%\wxPython\wxPython\*.pyd wxPython-dbg +copy %WXWIN%\wxPython\wxPython\*_d.pyd wxPython-dbg +copy %PCBUILD%\python_d.exe wxPython-dbg +copy %PCBUILD%\python%1_d.dll wxPython-dbg -zip -r wxPython-dbg-%1.zip wxPython-dbg +zip -r wxPython-dbg-%2-Py%1.zip wxPython-dbg del /sx wxPython-dbg +:end \ No newline at end of file