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