53adbc34a2
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6730 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
629 B
Batchfile
Executable File
31 lines
629 B
Batchfile
Executable File
@echo off
|
|
rem Zip up an external distribution of STC (wxStyledTextCtrl)
|
|
set src=d:\wx2\wxWindows
|
|
set dest=d:\wx2\wxWindows\deliver
|
|
|
|
if "%src" == "" goto usage
|
|
if "%dest" == "" goto usage
|
|
echo About to archive an external STC distribution:
|
|
echo From %src
|
|
echo To %dest\stc.zip
|
|
echo CTRL-C if this is not correct.
|
|
inkey /W4 `Press any key to continue...` %%input
|
|
|
|
erase %dest\stc.zip
|
|
cd %src
|
|
zip32 -@ %dest\stc.zip < %src\distrib\msw\stc.rsp
|
|
|
|
cd %dest
|
|
|
|
echo STC archived.
|
|
goto end
|
|
|
|
:usage
|
|
echo DOS STC distribution.
|
|
echo Usage: zipstc source destination
|
|
echo e.g. zipstc d:\wx2\wxWindows d:\wx2\wxWindows\deliver
|
|
|
|
:end
|
|
|
|
|