]> git.saurik.com Git - wxWidgets.git/blame - utils/ogl/distrib/zipogl.bat
wxPenRefData copy ctor was somehow not declared in the class definition
[wxWidgets.git] / utils / ogl / distrib / zipogl.bat
CommitLineData
0fc1a713
JS
1@echo off
2rem Zip up an external distribution of OGL
bbcdf8bc
JS
3set src=d:\wx2\wxWindows\utils\ogl
4set dest=%src\deliver
0fc1a713 5
bbcdf8bc
JS
6if "%src" == "" goto usage
7if "%dest" == "" goto usage
0fc1a713 8echo About to archive an external OGL distribution:
bbcdf8bc
JS
9echo From %src
10echo To %dest\ogl.zip
0fc1a713
JS
11echo CTRL-C if this is not correct.
12inkey /W4 `Press any key to continue...` %%input
13
bbcdf8bc
JS
14erase %dest\ogl.zip
15cd %src
16zip32 -@ %dest\ogl.zip < %src\distrib\ogl.rsp
0fc1a713
JS
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