diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-07-26 19:43:50 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-07-26 23:58:36 +0100 |
commit | a728225a9244276f1a3a6f3cee2e4410ae8259da (patch) | |
tree | 438f4eb974541e922d2130eb13b2e825ebf54f47 /projects | |
parent | 29e5cf2a2d99d01fa671f8277ac3579efa44b057 (diff) | |
download | curl-a728225a9244276f1a3a6f3cee2e4410ae8259da.tar.gz |
build-openssl.bat: Added support for VC14
Diffstat (limited to 'projects')
-rw-r--r-- | projects/build-openssl.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat index c1c3bbaf5..409c5da38 100644 --- a/projects/build-openssl.bat +++ b/projects/build-openssl.bat @@ -69,6 +69,10 @@ rem *************************************************************************** set VC_VER=12.0 set VC_DESC=VC12 set "VC_PATH=Microsoft Visual Studio 12.0\VC" + ) else if /i "%~1" == "vc14" ( + set VC_VER=14.0 + set VC_DESC=VC14 + set "VC_PATH=Microsoft Visual Studio 14.0\VC" ) else if /i "%~1%" == "x86" ( set BUILD_PLATFORM=x86 ) else if /i "%~1%" == "x64" ( @@ -146,6 +150,7 @@ rem *************************************************************************** if "%VC_VER%" == "10.0" set VCVARS_PLATFORM=%BUILD_PLATFORM% if "%VC_VER%" == "11.0" set VCVARS_PLATFORM=amd64 if "%VC_VER%" == "12.0" set VCVARS_PLATFORM=amd64 + if "%VC_VER%" == "14.0" set VCVARS_PLATFORM=amd64 ) :start @@ -286,6 +291,7 @@ rem *************************************************************************** echo vc10 - Use Visual Studio 2010 echo vc11 - Use Visual Studio 2012 echo vc12 - Use Visual Studio 2013 + echo vc14 - Use Visual Studio 2015 echo. echo Platform: echo. |