mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 18:55:10 +01:00
Merge pull request #2311 from SylvainCorlay/static-target-name
cmake: Set output name to libzmq for the libzmq-static target
This commit is contained in:
commit
4c1b338015
@ -731,6 +731,8 @@ if (MSVC)
|
||||
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin"
|
||||
COMPILE_DEFINITIONS "DLL_EXPORT")
|
||||
add_library (libzmq-static STATIC ${sources})
|
||||
# NOTE: on windows platform the static library name cannot be the same as the shared library name.
|
||||
# since the .dll also requires a .lib companion file for linking.
|
||||
set_target_properties (libzmq-static PROPERTIES
|
||||
PUBLIC_HEADER "${public_headers}"
|
||||
RELEASE_POSTFIX "${MSVC_TOOLSET}-mt-s-${ZMQ_VERSION_MAJOR}_${ZMQ_VERSION_MINOR}_${ZMQ_VERSION_PATCH}"
|
||||
@ -765,7 +767,7 @@ else ()
|
||||
set_target_properties (libzmq-static PROPERTIES
|
||||
PUBLIC_HEADER "${public_headers}"
|
||||
COMPILE_DEFINITIONS "ZMQ_STATIC"
|
||||
OUTPUT_NAME "libzmq-static"
|
||||
OUTPUT_NAME "libzmq"
|
||||
PREFIX "")
|
||||
endif ()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user