mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-17 08:34:00 +00:00
Use MSVC2012's msbuild to drive everything using toolkit support for actually compilations.
This commit is contained in:
parent
703c1a6e04
commit
60b64748e5
85
build-windows-installers.cmd
Normal file
85
build-windows-installers.cmd
Normal file
@ -0,0 +1,85 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
set WITH_OPENPGM=true
|
||||
set WITH_DOC=true
|
||||
|
||||
:: Remove old build files
|
||||
echo Cleaning build area ...
|
||||
rmdir /s /q build 2> null
|
||||
md build\x86\v90 build\x86\v100 build\x86\v110 build\x86\v110_xp build\x86\v120 2> null
|
||||
md build\x64\v90 build\x64\v100 build\x64\v110 build\x64\v120 2> null
|
||||
|
||||
echo Starting build ...
|
||||
call:buildx86 build\x86 ..\..
|
||||
call:buildx64 build\x64 ..\..
|
||||
|
||||
echo Build finished.
|
||||
goto:eof
|
||||
|
||||
:buildx86
|
||||
echo Building targets for x86 ...
|
||||
setlocal
|
||||
cd %~1\v90
|
||||
call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
|
||||
cmake -G "Visual Studio 12" ..\..\.. -T "v90" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug /target:ALL_BUILD ZeroMQ.sln >> build.log && msbuild /nologo /property:Configuration=Release /target:ALL_BUILD ZeroMQ.sln >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..\v100
|
||||
cmake -G "Visual Studio 12" ..\..\.. -T "v100" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release ALL_BUILD.vcxproj >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..\v110
|
||||
cmake -G "Visual Studio 12" ..\..\.. -T "v110" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release ALL_BUILD.vcxproj >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..\v120
|
||||
cmake -G "Visual Studio 12" ..\..\.. -T "v120" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release ALL_BUILD.vcxproj >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..\v110_xp
|
||||
cmake -G "Visual Studio 12" ..\..\.. -T "v110_xp" -DWITH_OPENPGM=%WITH_OPENPGM% -DWITH_DOC=%WITH_DOC% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release PACKAGE.vcxproj >> build.log
|
||||
(
|
||||
dir *.exe
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll
|
||||
) | findstr "\/"
|
||||
cd %~2
|
||||
endlocal
|
||||
goto:eof
|
||||
|
||||
:buildx64
|
||||
echo Building targets for x64 ...
|
||||
cd %~1
|
||||
|
||||
setlocal
|
||||
call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64
|
||||
|
||||
:: If linker crashes out with LNK1000 error install KB948127 to fix
|
||||
:: https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=11399
|
||||
(
|
||||
cd v90
|
||||
cmake -G "Visual Studio 12 Win64" ..\..\.. -T "v90" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug /target:ALL_BUILD ZeroMQ.sln >> build.log && msbuild /nologo /property:Configuration=Release /target:ALL_BUILD ZeroMQ.sln >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..
|
||||
)
|
||||
(
|
||||
cd v100
|
||||
cmake -G "Visual Studio 12 Win64" ..\..\.. -T "v100" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release ALL_BUILD.vcxproj >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..
|
||||
)
|
||||
(
|
||||
cd v110
|
||||
cmake -G "Visual Studio 12 Win64" ..\..\.. -T "v110" -DWITH_OPENPGM=%WITH_OPENPGM% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release ALL_BUILD.vcxproj >> build.log
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll | findstr "\/"
|
||||
cd ..
|
||||
)
|
||||
(
|
||||
cd v120
|
||||
cmake -G "Visual Studio 12 Win64" ..\..\.. -T "v120" -DWITH_OPENPGM=%WITH_OPENPGM% -DWITH_DOC=%WITH_DOC% > build.log && msbuild /nologo /property:Configuration=Debug ALL_BUILD.vcxproj >> build.log && msbuild /nologo /property:Configuration=Release PACKAGE.vcxproj >> build.log
|
||||
(
|
||||
dir *.exe
|
||||
for /D %%f in (lib\*) do dir %%f\*.dll
|
||||
) | findstr "\/"
|
||||
cd ..
|
||||
)
|
||||
|
||||
endlocal
|
||||
cd %~2
|
||||
goto:eof
|
@ -24,21 +24,19 @@
|
||||
MESSAGE(STATUS "Detecting ZMQ - failed")
|
||||
ENDIF()
|
||||
|
||||
if(MSVC_VERSION MATCHES "1800")
|
||||
if(CMAKE_GENERATOR_TOOLSET MATCHES "v120")
|
||||
set(_zmq_TOOLSET "-v120")
|
||||
set(_zmq_COMPILER "vc120")
|
||||
set(_zmq_WIN32_WINNT "0x0601")
|
||||
elseif(MSVC_VERSION MATCHES "1700")
|
||||
if(CMAKE_GENERATOR_TOOLSET MATCHES "v110_xp")
|
||||
set(_zmq_TOOLSET "-v110_xp")
|
||||
set(_zmq_COMPILER "vc110")
|
||||
set(_zmq_WIN32_WINNT "0x0501")
|
||||
else()
|
||||
set(_zmq_TOOLSET "-v110")
|
||||
set(_zmq_COMPILER "vc110")
|
||||
set(_zmq_WIN32_WINNT "0x0601")
|
||||
endif()
|
||||
elseif(MSVC10)
|
||||
elseif(CMAKE_GENERATOR_TOOLSET MATCHES "v110_xp")
|
||||
set(_zmq_TOOLSET "-v110_xp")
|
||||
set(_zmq_COMPILER "vc110")
|
||||
set(_zmq_WIN32_WINNT "0x0501")
|
||||
elseif(CMAKE_GENERATOR_TOOLSET MATCHES "v110")
|
||||
set(_zmq_TOOLSET "-v110")
|
||||
set(_zmq_COMPILER "vc110")
|
||||
set(_zmq_WIN32_WINNT "0x0601")
|
||||
elseif(CMAKE_GENERATOR_TOOLSET MATCHES "v100")
|
||||
set(_zmq_TOOLSET "-v100")
|
||||
set(_zmq_COMPILER "vc100")
|
||||
if(CMAKE_CL_64)
|
||||
@ -46,7 +44,7 @@
|
||||
else()
|
||||
set(_zmq_WIN32_WINNT "0x0501")
|
||||
endif()
|
||||
elseif(MSVC90)
|
||||
elseif(CMAKE_GENERATOR_TOOLSET MATCHES "v90")
|
||||
set(_zmq_TOOLSET "-v90")
|
||||
set(_zmq_COMPILER "vc90")
|
||||
if(CMAKE_CL_64)
|
||||
|
Loading…
x
Reference in New Issue
Block a user