diff options
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/BuildSetup.bat | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/project/Win32BuildSetup/BuildSetup.bat b/project/Win32BuildSetup/BuildSetup.bat index 6e58f58d17..5088198622 100644 --- a/project/Win32BuildSetup/BuildSetup.bat +++ b/project/Win32BuildSetup/BuildSetup.bat @@ -73,14 +73,10 @@ IF %comp%==vs2010 ( ) ELSE IF EXIST "%VS100COMNTOOLS%..\IDE\VCExpress.exe" ( SET VS_EXE="%VS100COMNTOOLS%..\IDE\VCExpress.exe" ) - - IF NOT EXIST %VS_EXE% ( - SET DIETEXT="Visual Studio 2010 Express not installed" - goto DIE - ) -) ELSE ( - SET DIETEXT="Unsupported Compiler: %comp%" - GOTO DIE +) +IF NOT EXIST %VS_EXE% ( + SET DIETEXT="Visual Studio 2010 Express not installed" + goto DIE ) :: |