source: local/greenstone2/windows-64bit/setup.bat@ 29053

Last change on this file since 29053 was 29053, checked in by ak19, 10 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
2echo.
3echo ******************************
4
5set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_55
6if not exist "%JAVA_HOME%" echo %JAVA_HOME% does not exist& goto done
7set PATH=%JAVA_HOME%\bin;%PATH%
8
9echo + Set JAVA_HOME=%JAVA_HOME% and updated PATH
10
11set PERL_HOME=C:\Perl64
12if not exist "%PERL_HOME%" echo %PERL_HOME% does not exist& goto done
13set PATH=%PERL_HOME%\bin;%PATH%
14
15echo + 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
19set vclocation=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC
20if not exist "%vclocation%" echo %vclocation% does not exist& goto done
21pushd "%vclocation%"
22call vcvarsall.bat amd64
23popd
24
25:done
26echo Leaving local/setup.bat
27echo ******************************
28echo.
Note: See TracBrowser for help on using the repository browser.