]> git.saurik.com Git - wxWidgets.git/blame_incremental - distrib/msw/zipxml.bat
copy install.txt and readme.txt
[wxWidgets.git] / distrib / msw / zipxml.bat
... / ...
CommitLineData
1@echo off
2rem Zip up an external distribution of wxXML
3set src=%WXWIN%
4set dest=%WXWIN%\deliver
5
6if "%src" == "" goto usage
7if "%dest" == "" goto usage
8echo About to archive an external wxXML distribution:
9echo From %src
10echo To %dest\xml.zip
11echo CTRL-C if this is not correct.
12inkey /W4 `Press any key to continue...` %%input
13
14erase %dest\xml.zip
15cd %src
16zip32 -@ %dest\xml.zip < %src\distrib\msw\xml.rsp
17
18cd %dest
19
20echo wxXML archived.
21goto end
22
23:usage
24echo DOS wxXML distribution.
25echo Usage: zipxml source destination
26echo e.g. zipxml d:\wx2\wxWidgets d:\wx2\wxWidgets\deliver
27
28:end
29
30