From 2c33811293a5aea38ec552b94f01d51ec16fd442 Mon Sep 17 00:00:00 2001 From: Fabian Niepelt Date: Mon, 12 Sep 2016 19:33:16 +0200 Subject: [FEATURE] Add proper SONAME versioning This doesn't affect the current build process much but distributions that require libraries to be built as a shared object also often require the use of symbol versioning using the SONAME, e.g openSUSE: https://en.opensuse.org/openSUSE:Shared_library_packaging_policy --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e649f24d..28274789 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,6 +67,8 @@ set(libqmatrixclient_SRCS ) add_library(qmatrixclient ${libqmatrixclient_SRCS}) +set_property(TARGET qmatrixclient PROPERTY VERSION "0.0.0") +set_property(TARGET qmatrixclient PROPERTY SOVERSION 0 ) if ( CMAKE_VERSION VERSION_LESS "3.1" ) CHECK_CXX_COMPILER_FLAG("-std=c++11" STD_FLAG_SUPPORTED) -- cgit v1.2.3