mirror of https://github.com/acidanthera/audk.git
Updated edksetup to support VS2005 iff VS2003 is not installed for the NT32 build
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4216 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d81b56bcbe
commit
6f729b6aa2
|
@ -51,9 +51,15 @@ goto check_vc
|
|||
@REM
|
||||
|
||||
:check_vc
|
||||
@REM The following setup is required for building the Nt32Pkg\Nt32.dsc
|
||||
@REM platform emulation environment.
|
||||
if defined VCINSTALLDIR goto check_cygwin
|
||||
if defined VS71COMNTOOLS (
|
||||
@REM Use Visual Studio .NET 2003 if it is installed
|
||||
call "%VS71COMNTOOLS%\vsvars32.bat"
|
||||
) else if defined VS80COMNTOOLS (
|
||||
@REM Use Visual Studio 2005 iff Visual Studio .NET 2003 is not installed.
|
||||
call "%VS80COMNTOOLS%\vsvars32.bat"
|
||||
) else (
|
||||
echo.
|
||||
echo !!! WARNING !!!! Cannot find Visual Studio !!!
|
||||
|
|
Loading…
Reference in New Issue