Last change
on this file since 18983 was 18983, checked in by davidb, 14 years ago |
Files for rudimentary Windows support
|
-
Property svn:executable
set to
*
|
File size:
1.1 KB
|
Line | |
---|
1 | @echo off
|
---|
2 | pushd "%CD%"
|
---|
3 | CD /D "%~dp0"
|
---|
4 | set GSDLLANG=en
|
---|
5 | set extdesc="the Video Extension"
|
---|
6 |
|
---|
7 | if "%OS%" == "Windows_NT" goto WinNT
|
---|
8 | if "%OS%" == "" goto Win95
|
---|
9 | if "%GSDLLANG%" == "en" echo Setup failed - your PATH has not been set
|
---|
10 | if "%GSDLLANG%" == "es" echo No se pudo realizar la configuraci¢n - no se ha establecido la RUTA.
|
---|
11 | if "%GSDLLANG%" == "fr" echo Echc de l'installation - votre variable PATH n'a pas t ajuste
|
---|
12 | if "%GSDLLANG%" == "ru" echo áâ ®¢ª ¥ 〠« áì - ¥ ¡ë« ãáâ ®¢«¥
|
---|
13 | goto End
|
---|
14 |
|
---|
15 | :WinNT
|
---|
16 | set GEXTVIDEO=%CD%
|
---|
17 | set GEXTVIDEO_INSTALLED=%GEXTVIDEO%\installed
|
---|
18 |
|
---|
19 | set PATH=%GEXTVIDEO_INSTALLED%\windows\bin;%PATH%
|
---|
20 | set GS_CP_SET=yes
|
---|
21 | goto Success
|
---|
22 |
|
---|
23 | :Win95
|
---|
24 | if "%1" == "SetEnv" goto Win95Env
|
---|
25 | REM We'll invoke a second copy of the command processor to make
|
---|
26 | REM sure there's enough environment space
|
---|
27 | COMMAND /E:2048 /K %0 SetEnv
|
---|
28 | goto End
|
---|
29 |
|
---|
30 | :Win95Env
|
---|
31 | set GEXTVIDEO=%CD%
|
---|
32 | set PATH="%GEXTVIDEO_INSTALLED%\windows\bin";"%PATH%"
|
---|
33 | set GS_CP_SET=yes
|
---|
34 | goto Success
|
---|
35 |
|
---|
36 | :Success
|
---|
37 |
|
---|
38 | if "x%GSDLEXTS%" == "x" (
|
---|
39 | set GSDLEXTS=video
|
---|
40 | ) else (
|
---|
41 | set GSDLEXTS=%GSDLEXTS%:video
|
---|
42 | )
|
---|
43 |
|
---|
44 | echo +Your environment is now setup for %extdesc%
|
---|
45 |
|
---|
46 | :End
|
---|
47 |
|
---|
48 | popd |
---|
Note:
See
TracBrowser
for help on using the repository browser.