diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-26 12:20:36 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-26 12:20:36 +0200 |
commit | 178298f53bd6bf68cda6f2780281f0893ef2dc73 (patch) | |
tree | 73dd19938e4ad55b29da743a2e9783115af10208 | |
parent | 10d4f336618cc753382efaaa95e69736cc2b7773 (diff) | |
download | uca-178298f53bd6bf68cda6f2780281f0893ef2dc73.tar.gz uca-178298f53bd6bf68cda6f2780281f0893ef2dc73.tar.bz2 uca-178298f53bd6bf68cda6f2780281f0893ef2dc73.tar.xz uca-178298f53bd6bf68cda6f2780281f0893ef2dc73.zip |
Set SO version to major not minor version
Fortunately, no one really used the 0.6-rc1 version which would have a higher SO
version than 1.0.
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9508c5c..05fd37f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -155,7 +155,7 @@ add_library(uca SHARED set_target_properties(uca PROPERTIES VERSION ${UCA_ABI_VERSION} - SOVERSION ${UCA_VERSION_MINOR}) + SOVERSION ${UCA_VERSION_MAJOR}) target_link_libraries(uca ${uca_LIBS}) |