Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for Visual Studio 2015 to build-windows.bat. #1181

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions bin/build-windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ where lib || echo "Could not find lib.exe (are you in your VS developer tools pr

:haslib
set arg1=%1
if "%arg1%"=="" set arg1=vs2013
if "%arg1%"=="" set arg1=vs2015
set generator=
if "%arg1%"=="vs2008" set generator=Visual Studio 9 2008
if "%arg1%"=="vs2010" set generator=Visual Studio 10
if "%arg1%"=="vs2012" set generator=Visual Studio 11
if "%arg1%"=="vs2013" set generator=Visual Studio 12
if "%arg1%"=="vs2015" set generator=Visual Studio 14
if "%generator%"=="" (
@echo Unknown argument "%1". Valid values are vs2008, vs2010, vs2012, vs2013. Exiting.
@echo Unknown argument "%1". Valid values are vs2008, vs2010, vs2012, vs2013, vs2015. Exiting.
exit /b 1
)
cd %~dp0%..
Expand Down