]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/makedev.bat
Allowed MSW wxTrextCtrl styling to also set the background colour,
[wxWidgets.git] / wxPython / distrib / makedev.bat
1 @echo off
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.
5
6 mkdir wxWin
7 mkdir wxWin\lib
8 copy %WXWIN%\lib\*.lib wxWin\lib
9 del wxWin\lib\*_d.lib
10
11 mkdir wxWin\src
12 copy %WXWIN%\src\makevc.env wxWin\src
13 copy %WXWIN%\src\*.vc wxWin\src
14
15 mkdir wxWin\src\msw
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
20
21 mkdir wxWin\include
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
27
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
33
34
35 zip -r wxPython-dev-%1.zip wxWin
36
37
38 del /sx wxWin
39
40
41