X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4d85bcd1f59a00ff4d626f0acc0b24474ec1aa09..733dac47604d9f7c90be2397edc153434e1b3f58:/distrib/msw/zipdist.bat diff --git a/distrib/msw/zipdist.bat b/distrib/msw/zipdist.bat index 978c6e3de0..9e6c68bdb1 100755 --- a/distrib/msw/zipdist.bat +++ b/distrib/msw/zipdist.bat @@ -2,11 +2,17 @@ rem Zip up an external, generic + Windows distribution of wxWindows 2.0 set src=%wxwin set dest=%src\deliver +set wise=0 if "%src" == "" goto usage if "%dest" == "" goto usage +if "%1" == "-help" goto usage +if "%1" == "--help" goto usage +if "%1" == "/?" goto usage +if "%1" == "wise" set wise=1 echo About to archive an external wxWindows distribution: echo From %src echo To %dest +if "%wise" == "1" echo with WISE setup creation. echo CTRL-C if this is not correct. pause @@ -76,6 +82,9 @@ copy %src\docs\gtk\makewxgtk %dest cd %dest +Rem Skip WISE setup if wise is 0. +if "%wise" == "0" goto end + rem Unzip the Windows files into 'wx' mkdir %dest\wx @@ -88,15 +97,13 @@ unzip32 -o ..\wx200gen.zip unzip32 -o ..\wx200vc.zip unzip32 -o ..\wx200bc.zip unzip32 -o ..\wx200hlp.zip +Rem Need Word file, for Remstar DB classes +unzip32 -o ..\wx200wrd.zip unzip32 -o ..\glcanvas.zip unzip32 -o ..\treedraw.zip unzip32 -o ..\ogl3.zip unzip32 -o ..\jpeg.zip -rem unzip32 -o ..\wx200doc.zip -rem unzip32 -o ..\wx200bc.zip -rem unzip32 -o ..\wx200cw.zip - rem Now delete a few files that are unnecessary erase /Y *.in *.spec *.guess *.sub mkinstalldirs modules install-sh *.sh erase /SY Makefile.in @@ -125,8 +132,10 @@ echo wxWindows archived. goto end :usage -echo DOS wxWindows distribution. -echo Usage: zipdist source destination -echo e.g. zipdist d:\wx2\wxWindows d:\wx2\wxWindows\deliver +echo DOS wxWindows distribution. Zips up all GTK/Motif/MSW/doc files, +echo and optionally makes a deliver\wx directory and a setup.exe +echo if you specify 'wise'. +echo. +echo Usage: zipdist [wise] :end