2 rem Builds a zip containing stuff needed to link with the wxWindows DLL
3 rem shipped with wxPython. This allows other developers to create apps
4 rem or extensions that can share the same DLL.
8 copy %WXWIN%\lib\
*.lib wxWin\lib
12 copy %WXWIN%\src\makevc.env wxWin\src
13 copy %WXWIN%\src\
*.vc wxWin\src
16 mkdir wxWin\src\msw\ReleaseDLL
17 copy %WXWIN%\src\msw\
*.pch wxWin\src\msw
18 del wxWin\src\msw\
*_d.pch
19 copy %WXWIN%\src\msw\ReleaseDLL\dummy
*.obj wxWin\src\msw\ReleaseDLL
22 mkdir wxWin\include\wx
23 mkdir wxWin\include\wx\msw
24 mkdir wxWin\include\wx\generic
25 mkdir wxWin\include\wx\html
26 mkdir wxWin\include\wx\protocol
28 copy %WXWIN%\include\wx\
*.
* wxWin\include\wx
29 copy /s
%WXWIN%\include\wx\msw\
* wxWin\include\wx\msw
30 copy /s
%WXWIN%\include\wx\generic\
* wxWin\include\wx\generic
31 copy /s
%WXWIN%\include\wx\html\
* wxWin\include\wx\html
32 copy /s
%WXWIN%\include\wx\protocol\
* wxWin\include\wx\protocol
35 zip
-r wxPython
-dev
-%1.zip wxWin