]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zipdist.bat
'&' are removed from checkbox labels (all controls should call
[wxWidgets.git] / distrib / msw / zipdist.bat
CommitLineData
457814b5
JS
1@echo off
2rem Zip up an external, generic + Windows distribution of wxWindows 2.0
bbcdf8bc
JS
3set src=d:\wx2\wxWindows
4set dest=%src\deliver
5if "%src" == "" goto usage
6if "%dest" == "" goto usage
457814b5 7echo About to archive an external wxWindows distribution:
bbcdf8bc
JS
8echo From %src
9echo To %dest\wx200gen.zip, %dest\wx200doc.zip, %dest\wx200msw.zip, %dest\wx200ps.zip, %dest\wx200hlp.zip, %dest\wx200htm.zip, %dest\wx200pdf.zip
457814b5
JS
10echo CTRL-C if this is not correct.
11pause
12
bbcdf8bc 13erase %dest\wx200*.zip
457814b5 14
bbcdf8bc 15cd %src
457814b5 16echo Zipping...
bbcdf8bc
JS
17zip32 -@ %dest\wx200gen.zip < %src\distrib\msw\generic.rsp
18zip32 -@ %dest\wx200msw.zip < %src\distrib\msw\msw.rsp
19zip32 -@ %dest\wx200gtk.zip < %src\distrib\msw\gtk.rsp
20zip32 -@ %dest\wx200doc.zip < %src\distrib\msw\docsrc.rsp
457814b5 21
bbcdf8bc
JS
22zip32 -@ %dest\wx200hlp.zip < %src\distrib\msw\wx_hlp.rsp
23zip32 -@ %dest\wx200htm.zip < %src\distrib\msw\wx_html.rsp
24zip32 -@ %dest\wx200pdf.zip < %src\distrib\msw\wx_pdf.rsp
457814b5 25
bbcdf8bc 26cd %dest
457814b5
JS
27
28echo wxWindows archived.
29goto end
30
31:usage
32echo DOS wxWindows distribution.
884360bc
JS
33echo Usage: zipdist source destination
34echo e.g. zipdist d:\wx2\wxWindows d:\wx2\wxWindows\deliver
457814b5
JS
35
36:end