forked from zeromq/libzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request zeromq#1810 from opedroso/IMPROVE_WINDOWS_BUILD
Problem: Windows build script requires edit for DevStudio version
- Loading branch information
Showing
4 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,6 +111,7 @@ Hardeep Singh | |
André Caron | ||
Tim Mossbarger | ||
Doron Somech | ||
Osiris Pedroso | ||
|
||
Credits | ||
======= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
@ECHO OFF | ||
@setlocal | ||
:: | ||
:: uses the environment from the DevStudio CMD window to figure out which version to build | ||
:: | ||
|
||
CALL buildbase.bat ..\vs2015\libzmq.sln 14 | ||
ECHO. | ||
set VSVER=%VSINSTALLDIR:~-5,2% | ||
set DIRVER=%VSVER% | ||
if %VSVER% gtr 10 set /a DIRVER = DIRVER + 1 | ||
|
||
CALL buildbase.bat ..\vs20%DIRVER%\libzmq.sln %VSVER% | ||
|
||
:- CALL buildbase.bat ..\vs2015\libzmq.sln 14 | ||
:- ECHO. | ||
:- CALL buildbase.bat ..\vs2013\libzmq.sln 12 | ||
:- ECHO. | ||
:- CALL buildbase.bat ..\vs2012\libzmq.sln 11 | ||
:- ECHO. | ||
:- CALL buildbase.bat ..\vs2010\libzmq.sln 10 | ||
:- ECHO. | ||
|
||
@endlocal | ||
PAUSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters