Version suffix for static lib (CMake patch #26)
This commit is contained in:
parent
e31a2bd61e
commit
095376839d
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ add_library(quazip_static STATIC ${SRCS})
|
|||
# Windows uses .lib extension for both static and shared library
|
||||
# *nix systems use different extensions for SHARED and STATIC library and by convention both libraries have the same name
|
||||
if (NOT WIN32)
|
||||
set_target_properties(quazip_static PROPERTIES OUTPUT_NAME quazip)
|
||||
set_target_properties(quazip_static PROPERTIES OUTPUT_NAME quazip${QUAZIP_LIB_VERSION_SUFFIX})
|
||||
endif ()
|
||||
|
||||
set_target_properties(${QUAZIP_LIB_TARGET_NAME} quazip_static PROPERTIES VERSION 1.0.0 SOVERSION 1 DEBUG_POSTFIX d)
|
||||
|
|
Loading…
Reference in a new issue