]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/ogl/distrib/zipogl.bat
wxPenRefData copy ctor was somehow not declared in the class definition
[wxWidgets.git] / utils / ogl / distrib / zipogl.bat
... / ...
CommitLineData
1@echo off
2rem Zip up an external distribution of OGL
3set src=d:\wx2\wxWindows\utils\ogl
4set dest=%src\deliver
5
6if "%src" == "" goto usage
7if "%dest" == "" goto usage
8echo About to archive an external OGL distribution:
9echo From %src
10echo To %dest\ogl.zip
11echo CTRL-C if this is not correct.
12inkey /W4 `Press any key to continue...` %%input
13
14erase %dest\ogl.zip
15cd %src
16zip32 -@ %dest\ogl.zip < %src\distrib\ogl.rsp
17
18echo OGL archived.
19goto end
20
21:usage
22echo DOS OGL distribution.
23echo Usage: zipogl source destination
24echo e.g. zipogl c:\wx\utils\ogl c:\wx\utils\ogl\deliver
25
26:end
27
28