diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-12-04 18:23:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 18:23:50 +0900 |
commit | 39204f0099e5556eb46bed00f3b31413af860a45 (patch) | |
tree | bf73874abe00da7779d99e0c2e87b23207ec7ebd | |
parent | 754405277eef2b7d12239c0979df209dc47fe0d7 (diff) | |
parent | 147115e7591b87086141418ead8e0e1237362f9c (diff) | |
download | libquotient-39204f0099e5556eb46bed00f3b31413af860a45.tar.gz libquotient-39204f0099e5556eb46bed00f3b31413af860a45.zip |
Merge pull request #262 from uhoreg/soname
use the API version as the SOVERSION
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 49c5d8b2..8a3193a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -142,7 +142,7 @@ add_library(QMatrixClient ${libqmatrixclient_SRCS} ${libqmatrixclient_asdef_SRCS} ${libqmatrixclient_isdef_SRCS}) set(API_VERSION "0.4") set_property(TARGET QMatrixClient PROPERTY VERSION "${API_VERSION}.0") -set_property(TARGET QMatrixClient PROPERTY SOVERSION 0 ) +set_property(TARGET QMatrixClient PROPERTY SOVERSION ${API_VERSION} ) set_property(TARGET QMatrixClient PROPERTY INTERFACE_QMatrixClient_MAJOR_VERSION ${API_VERSION}) set_property(TARGET QMatrixClient APPEND PROPERTY |