aboutsummaryrefslogtreecommitdiff
path: root/z_install.bat
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-04-23 18:16:47 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-04-23 18:16:47 +0000
commitd07a93c709c70e4ab8a50e92f18503d0a7418e55 (patch)
treeba9a22057fe2f710ee1cd23f113c6b80e9a160c1 /z_install.bat
parent3ac069de786e63c2386b6cf8fbe2a3dc38cdf26d (diff)
updated for zexy-2.0
svn path=/trunk/externals/zexy/; revision=2809
Diffstat (limited to 'z_install.bat')
-rw-r--r--z_install.bat24
1 files changed, 20 insertions, 4 deletions
diff --git a/z_install.bat b/z_install.bat
index 985f0d6..b57d39f 100644
--- a/z_install.bat
+++ b/z_install.bat
@@ -10,12 +10,23 @@ set PDPATH=C:\programme\pd
REM which pd-version do we have ?
set PDVERSION=0.37
+
REM ==============================================
REM do not edit below this line !!!
REM ==============================================
+echo :
+echo : installing zexy on your system
+echo :
+echo : assuming that PD-version is at least %PDVERSION%
+echo : assuming that PD is installed at %PDPATH%
+echo :
+echo : if this is correct, hit [return] to proceed
+echo : if this is incorrect, stop this programm ([Ctrl]-C), edit 'z_install.bat' to your needs and rerun
+echo :
+pause
+
-echo installing zexy on your system
IF NOT EXIST %PDPATH%\bin\pd.exe goto location_error
set BINPATH=extra
@@ -28,12 +39,17 @@ copy zexy.dll %PDPATH%\%BINPATH% > tempInstall.trash
echo copying help files
mkdir %PDPATH%\%REFPATH%
-copy examples\* %PDPATH%\%REFPATH%
+copy examples\* %PDPATH%\%REFPATH% > tempInstall.trash
echo copying abstractions
-copy abs\*.pd %PDPATH\%BINPATH%
+copy abs\*.pd %PDPATH%\%BINPATH% > tempInstall.trash
+
+echo : done
+echo : dont forget to load zexy on startup...
+echo : have fun
+
+
-echo done
goto end
:location_error