Last change
on this file since 29053 was 29053, checked in by ak19, 9 years ago |
Cleaned up the default setup.bat and addin g the new setup32.bat which works to compile GS2 in a 32 bit mode on a 64 bit Windows 7.
|
File size:
892 bytes
|
Line | |
---|
1 | @echo off
|
---|
2 | echo.
|
---|
3 | echo ******************************
|
---|
4 |
|
---|
5 | set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_55
|
---|
6 | if not exist "%JAVA_HOME%" echo %JAVA_HOME% does not exist& goto done
|
---|
7 | set PATH=%JAVA_HOME%\bin;%PATH%
|
---|
8 |
|
---|
9 | echo + Set JAVA_HOME=%JAVA_HOME% and updated PATH
|
---|
10 |
|
---|
11 | set PERL_HOME=C:\Perl64
|
---|
12 | if not exist "%PERL_HOME%" echo %PERL_HOME% does not exist& goto done
|
---|
13 | set PATH=%PERL_HOME%\bin;%PATH%
|
---|
14 |
|
---|
15 | echo + Set PERL_PATH=%PERL_HOME% and updated PATH
|
---|
16 |
|
---|
17 | :: call "C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\vsvars32.bat"
|
---|
18 | ::set vclocation=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC
|
---|
19 | set vclocation=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC
|
---|
20 | if not exist "%vclocation%" echo %vclocation% does not exist& goto done
|
---|
21 | pushd "%vclocation%"
|
---|
22 | call vcvarsall.bat amd64
|
---|
23 | popd
|
---|
24 |
|
---|
25 | :done
|
---|
26 | echo Leaving local/setup.bat
|
---|
27 | echo ******************************
|
---|
28 | echo.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.