]> git.saurik.com Git - wxWidgets.git/blame - utils/glcanvas/distrib/zipsrc.bat
wxFileConfig ctor now (again) uses the files in the correct locations if the
[wxWidgets.git] / utils / glcanvas / distrib / zipsrc.bat
CommitLineData
6a1120ad
JS
1@echo off
2rem Zip up an external source distribution of GLCanvas
3set src=%1
4set dest=%2
5if "%src" == "" set src=%WXWIN\utils\glcanvas
6if "%dest" == "" set dest=%WXWIN\utils\glcanvas\deliver
7echo About to archive an external GLCanvas distribution:
8echo From %src
9echo To %dest\glcanvas.zip
10echo CTRL-C if this is not correct.
11inkey /W10 `Press any key to continue...` %%input
12
13erase %dest\glcanvas.zip
14cd %src
15
16zip32 -@ %dest\glcanvas.zip < %src\distrib\glcanvas.rsp
17
18echo GLCanvas archived.
19goto end
20
21:usage
22echo GLCanvas distribution.
23echo Usage: zipsrc source destination
24
25:end
26
27