diff options
author | Hubert Chathi <uhoreg@debian.org> | 2018-12-03 18:08:35 -0500 |
---|---|---|
committer | Hubert Chathi <uhoreg@debian.org> | 2018-12-03 18:08:35 -0500 |
commit | 147115e7591b87086141418ead8e0e1237362f9c (patch) | |
tree | 00da650c53beb951ac7ee65a9ccc440e136b27d4 | |
parent | 98c416813177f7141079101da978fe1222574b5c (diff) | |
download | libquotient-147115e7591b87086141418ead8e0e1237362f9c.tar.gz libquotient-147115e7591b87086141418ead8e0e1237362f9c.zip |
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 7e3eb600..5a1950b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,7 +141,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 |