]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/zipdist.bat
Small changes to peripheral files
[wxWidgets.git] / distrib / msw / zipdist.bat
index 4ec3c6d850d1f8cbc0d76e5d6f91a7be5f469d44..9e6c68bdb1bf9b905b05f4667661063a369ae40e 100755 (executable)
@@ -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
 
@@ -86,16 +95,15 @@ cd %dest\wx
 unzip32 -o ..\wx200msw.zip
 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
@@ -124,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