source: other-projects/nightly-tasks/diffcol/trunk/runtime-setenv-ifWithoutEnvi.bat@ 39017

Last change on this file since 39017 was 38049, checked in by anupama, 9 months ago

Updating the scripts that I use to compile diffcol GS3 and test diffcol when there's no envi

File size: 1.5 KB
Line 
1@echo off
2
3::set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_20
4::set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_191
5set JAVA_HOME=C:\Users\ADJUST-THIS\zulu8.72.0.17-ca-fx-jdk8.0.382-win_x64
6
7
8if not exist "%JAVA_HOME%" (
9 echo %JAVA_HOME% not found. Exiting...
10 goto done
11)
12set PATH=%JAVA_HOME%\bin;%PATH%
13echo + Set JAVA_HOME to local instance and updated PATH
14
15
16::set PERL_HOME=C:\strawberry-perl-64bit\perl
17:: only set to strawberry-perl5-64bit for regular GS3 from SVN, not release kits nor even diffcol
18::set _PERL_TOPLEVEL=C:\Users\GameJam\strawberry-perl32no64
19set _PERL_TOPLEVEL=C:\Users\ADJUST-THIS\strawberry-perl32no64
20set PERL_HOME=%_PERL_TOPLEVEL%\perl
21
22if not exist "%PERL_HOME%" (
23 echo %PERL_HOME% not found. Exiting...
24 goto done
25)
26echo + Set PERL_HOME to local instance and updated PATH
27
28::set ANT_HOME=C:\Users\GameJam\apache-ant-1.9.5
29set ANT_HOME=C:\Users\ADJUST-THIS\apache-ant-1.9.5
30
31if not exist "%ANT_HOME%" (
32 echo %ANT_HOME% not found. Exiting...
33 goto done
34)
35echo + Set ANT_HOME to local instance and updated PATH
36
37set SVN_HOME=C:\Users\ADJUST-THIS\svn-win32-1.8.17
38if not exist "%SVN_HOME%" (
39 echo %SVN_HOME% not found. Exiting...
40 goto done
41)
42
43::set PATH=%PERL_HOME%\site\bin;%PERL_HOME%\bin;%_PERL_TOPLEVEL%\c\bin;%ANT_HOME%\bin;%PATH%
44set PATH=%PERL_HOME%\site\bin;%PERL_HOME%\bin;%_PERL_TOPLEVEL%\c\bin;%ANT_HOME%\bin;%SVN_HOME%\bin;%PATH%
45echo + Added SVN_HOME and updated PATH
46
47:: Unset local variable(s)
48set _PERL_TOPLEVEL=
49
50
51
52
53:done
Note: See TracBrowser for help on using the repository browser.