- updated VC++ script to work more generically before looking for specific 32 / 64 bit paths

This commit is contained in:
Mark Vejvoda 2011-01-14 07:23:55 +00:00
parent 965e473052
commit 0f5101034c
1 changed files with 5 additions and 0 deletions

View File

@ -15,10 +15,15 @@ GOTO SVNSECTION
:SETVCVARS
IF EXIST "%VS90COMNTOOLS%..\..\" GOTO VC_Common
IF EXIST "\Program Files\Microsoft Visual Studio 9.0\" GOTO VC_32
IF EXIST "\Program Files (x86)\Microsoft Visual Studio 9.0\" GOTO VC_64
goto SVNSECTION
:VC_Common
call "%VS90COMNTOOLS%..\..\vc\vcvarsall.bat"
goto SVNSECTION
:VC_32
ECHO 32 bit Windows detected...
call "\Program Files\Microsoft Visual Studio 9.0\vc\vcvarsall.bat"