mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
7913e96271
(msys building is buggy, please be aware, it fails to compile on my machine) also I modified the buildall.bat/buildbase.bat to use correct MSVC versions instead of "visual studio 2017"
17 lines
333 B
Batchfile
17 lines
333 B
Batchfile
@ECHO OFF
|
|
:: Usage: buildall.bat
|
|
|
|
:: Build all configurations for all solutions.
|
|
call buildbase.bat ..\vs2017\libzmq.sln 15
|
|
ECHO.
|
|
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.
|
|
|
|
PAUSE
|