]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zippatch.bat
Added includes needed if not using precompiled headers.
[wxWidgets.git] / distrib / msw / zippatch.bat
CommitLineData
1c6fb09f
JS
1@echo off
2rem Zip up a patch file
6b8b0e7c
JS
3Rem m:\wx2 contains the latest version + any crucial patches
4set src=m:\wx2
5set dest=%wxwin\deliver
1c6fb09f
JS
6set wise=0
7
8Rem Set this to the required patch version
6b8b0e7c 9set version=03
1c6fb09f
JS
10
11if "%src" == "" goto usage
12if "%dest" == "" goto usage
13echo About to archive patch%version%.zip
14echo From %src
15echo To %dest
16if "%wise" == "1" echo with WISE setup creation.
17echo CTRL-C if this is not correct.
18pause
19
20erase %dest\patch*.zip
21
22cd %src
23echo Zipping...
24
6b8b0e7c 25zip32 -@ %dest\patch%version%.zip < %wxwin\distrib\msw\patch.rsp
1c6fb09f
JS
26echo wxWindows patch archived.
27
28cd %dest
29
30goto end
31
32:usage
33echo DOS wxWindows patch distribution.
34echo.
35echo Usage: zippatch
36
37:end