FS-6520 #comment This should work for VS2013 #resolve

This commit is contained in:
Peter Olsson 2015-02-21 11:21:27 +01:00
parent 609c02955f
commit 0a8cc1840b
1 changed files with 7 additions and 1 deletions

View File

@ -23,7 +23,13 @@ IF "%1-%2" == "%LAST_BUILD_INFO%" (
SET LIB_DEST_DIR=
IF NOT "%4" == "" (
IF "%VisualStudioVersion%" == "11.0" (
SET VS_VERSION=-Gmsvs_version=2012
ECHO Forcing build to use Visual Studio 2012
) ELSE IF "%VisualStudioVersion%" == "12.0" (
SET VS_VERSION=-Gmsvs_version=2013
ECHO Forcing build to use Visual Studio 2013
) ELSE IF NOT "%4" == "" (
SET VS_VERSION=-Gmsvs_version=%4
ECHO Forcing build to use Visual Studio %4
)