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