]> git.saurik.com Git - wxWidgets.git/blame_incremental - distrib/msw/zippatch.bat
documented XPM support and updated status of TIFF handler
[wxWidgets.git] / distrib / msw / zippatch.bat
... / ...
CommitLineData
1@echo off
2rem Zip up a patch file
3set src=d:\wx2\wxWindows
4set dest=%wxwin\deliver
5
6Rem Set this to the required patch version
7set version=01
8
9if "%src" == "" goto usage
10if "%dest" == "" goto usage
11echo About to archive patch%version%.zip
12echo From %src
13echo To %dest
14if "%wise" == "1" echo with WISE setup creation.
15echo CTRL-C if this is not correct.
16pause
17
18erase %dest\patch*.zip
19
20cd %src
21echo Zipping...
22
23zip32 -@ %dest\patch%version%.zip < %wxwin\distrib\msw\patch.rsp
24echo wxWindows patch archived.
25
26cd %dest
27
28goto end
29
30:usage
31echo DOS wxWindows patch distribution.
32echo.
33echo Usage: zippatch
34
35:end