diff options
author | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2019-04-28 20:11:33 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2019-04-28 20:11:33 +0200 |
commit | 3ead9a5c182118216a72439366607cc490a0b094 (patch) | |
tree | 384e53ea81157e91d9ca1293cad755ccda47dc54 /CMakeLists.txt | |
parent | cb602bce7004aedcad88f5a22e4d6acd9372da8f (diff) | |
parent | b08941cd7113d882790c7d62edb59f31649daadd (diff) |
Update upstream source from tag 'upstream/0.9.3'
Update to upstream version '0.9.3'
with Debian dir 14d75ef85558fdc8303d8d1298663efadd1e7b49
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 749fea1..ceb79e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,12 +38,12 @@ cmake_minimum_required(VERSION 3.3) project(uriparser VERSION - 0.9.2 + 0.9.3 ) # See https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html set(URIPARSER_SO_CURRENT 1) -set(URIPARSER_SO_REVISION 25) +set(URIPARSER_SO_REVISION 26) set(URIPARSER_SO_AGE 0) include(CheckCCompilerFlag) @@ -151,6 +151,9 @@ if(NOT MSVC) math(EXPR URIPARSER_SO_CURRENT_MINUS_AGE "${URIPARSER_SO_CURRENT} - ${URIPARSER_SO_AGE}") set_property(TARGET uriparser PROPERTY VERSION ${URIPARSER_SO_CURRENT_MINUS_AGE}.${URIPARSER_SO_AGE}.${URIPARSER_SO_REVISION}) set_property(TARGET uriparser PROPERTY SOVERSION ${URIPARSER_SO_CURRENT_MINUS_AGE}) + if(WIN32) + set_property(TARGET uriparser PROPERTY SUFFIX "-${URIPARSER_SO_CURRENT_MINUS_AGE}${CMAKE_SHARED_LIBRARY_SUFFIX}") + endif() endif() set_property( |