]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zipstc.bat
Updated file list
[wxWidgets.git] / distrib / msw / zipstc.bat
CommitLineData
0d3a69ec
JS
1@echo off
2rem Zip up an external distribution of STC (wxStyledTextCtrl)
3set src=d:\wx2\wxWindows
4set dest=d:\wx2\wxWindows\deliver
5
6if "%src" == "" goto usage
7if "%dest" == "" goto usage
8echo About to archive an external STC distribution:
9echo From %src
53adbc34 10echo To %dest\stc.zip
0d3a69ec
JS
11echo CTRL-C if this is not correct.
12inkey /W4 `Press any key to continue...` %%input
13
53adbc34 14erase %dest\stc.zip
0d3a69ec 15cd %src
53adbc34 16zip32 -@ %dest\stc.zip < %src\distrib\msw\stc.rsp
0d3a69ec
JS
17
18cd %dest
19
20echo STC archived.
21goto end
22
23:usage
24echo DOS STC distribution.
25echo Usage: zipstc source destination
26echo e.g. zipstc d:\wx2\wxWindows d:\wx2\wxWindows\deliver
27
28:end
29
30