diff options
author | KitsuneRal <Kitsune-Ral@users.sf.net> | 2016-09-13 05:58:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 05:58:38 +0900 |
commit | 76d3f8da077509f37bd767dd6fcfd59e0b285fe8 (patch) | |
tree | 461fc32e043418f118a2a9f8ee681b84af1901cb | |
parent | 3860a3ced0ce76a977c4f42ff9a3fa4e98b230e9 (diff) | |
parent | 2c33811293a5aea38ec552b94f01d51ec16fd442 (diff) | |
download | libquotient-76d3f8da077509f37bd767dd6fcfd59e0b285fe8.tar.gz libquotient-76d3f8da077509f37bd767dd6fcfd59e0b285fe8.zip |
Merge pull request #27 from Takios/master
[FEATURE] Add proper SONAME versioning
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
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) |