]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zipxml.bat
fix bug with treectrl sample
[wxWidgets.git] / distrib / msw / zipxml.bat
CommitLineData
73a2995f
JS
1@echo off
2rem Zip up an external distribution of wxXML
e74a9319
JS
3set src=%WXWIN%
4set dest=%WXWIN%\deliver
73a2995f
JS
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\wxWindows d:\wx2\wxWindows\deliver
27
28:end
29
30