2000-10-12 16:32:03 +00:00
|
|
|
@echo off
|
|
|
|
rem Zip up an external distribution of wxXML
|
2001-04-29 13:42:03 +00:00
|
|
|
set src=%WXWIN%
|
|
|
|
set dest=%WXWIN%\deliver
|
2000-10-12 16:32:03 +00:00
|
|
|
|
|
|
|
if "%src" == "" goto usage
|
|
|
|
if "%dest" == "" goto usage
|
|
|
|
echo About to archive an external wxXML distribution:
|
|
|
|
echo From %src
|
|
|
|
echo To %dest\xml.zip
|
|
|
|
echo CTRL-C if this is not correct.
|
|
|
|
inkey /W4 `Press any key to continue...` %%input
|
|
|
|
|
|
|
|
erase %dest\xml.zip
|
|
|
|
cd %src
|
|
|
|
zip32 -@ %dest\xml.zip < %src\distrib\msw\xml.rsp
|
|
|
|
|
|
|
|
cd %dest
|
|
|
|
|
|
|
|
echo wxXML archived.
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:usage
|
|
|
|
echo DOS wxXML distribution.
|
|
|
|
echo Usage: zipxml source destination
|
2004-05-23 14:56:36 +00:00
|
|
|
echo e.g. zipxml d:\wx2\wxWidgets d:\wx2\wxWidgets\deliver
|
2000-10-12 16:32:03 +00:00
|
|
|
|
|
|
|
:end
|
|
|
|
|
|
|
|
|