]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/makedev.bat
added conversion routines to CIconHandle
[wxWidgets.git] / wxPython / distrib / makedev.bat
CommitLineData
f6bcfd97
BP
1@echo off
2rem Builds a zip containing stuff needed to link with the wxWindows DLL
3rem shipped with wxPython. This allows other developers to create apps
4rem or extensions that can share the same DLL.
5
6mkdir wxWin
7mkdir wxWin\lib
8copy %WXWIN%\lib\*.lib wxWin\lib
9del wxWin\lib\*_d.lib
10
11mkdir wxWin\src
12copy %WXWIN%\src\makevc.env wxWin\src
13copy %WXWIN%\src\*.vc wxWin\src
14
15mkdir wxWin\src\msw
16mkdir wxWin\src\msw\ReleaseDLL
17copy %WXWIN%\src\msw\*.pch wxWin\src\msw
18del wxWin\src\msw\*_d.pch
19copy %WXWIN%\src\msw\ReleaseDLL\dummy*.obj wxWin\src\msw\ReleaseDLL
20
21mkdir wxWin\include
22mkdir wxWin\include\wx
23mkdir wxWin\include\wx\msw
24mkdir wxWin\include\wx\generic
25mkdir wxWin\include\wx\html
26mkdir wxWin\include\wx\protocol
27
28copy %WXWIN%\include\wx\*.* wxWin\include\wx
29copy /s %WXWIN%\include\wx\msw\* wxWin\include\wx\msw
30copy /s %WXWIN%\include\wx\generic\* wxWin\include\wx\generic
31copy /s %WXWIN%\include\wx\html\* wxWin\include\wx\html
32copy /s %WXWIN%\include\wx\protocol\* wxWin\include\wx\protocol
33
34
35zip -r wxPython-dev-%1.zip wxWin
36
37
38del /sx wxWin
39
40
41