wxWidgets/distrib/msw/zippatch.bat
Julian Smart c0ab6adfed Watcom C++ fixup in tbar95.cpp; removed WXWIN_COMPATIBILITY for 'old' menu
constructor and event handling; added wxString version of wxGetTempFileName


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-11-14 14:41:30 +00:00

37 lines
612 B
Batchfile
Executable File

@echo off
rem Zip up a patch file
set src=%wxwin
set dest=%src\deliver
set wise=0
Rem Set this to the required patch version
set version=02
if "%src" == "" goto usage
if "%dest" == "" goto usage
echo About to archive patch%version%.zip
echo From %src
echo To %dest
if "%wise" == "1" echo with WISE setup creation.
echo CTRL-C if this is not correct.
pause
erase %dest\patch*.zip
cd %src
echo Zipping...
zip32 -@ %dest\patch%version%.zip < %src\distrib\msw\patch.rsp
echo wxWindows patch archived.
cd %dest
goto end
:usage
echo DOS wxWindows patch distribution.
echo.
echo Usage: zippatch
:end