diff options
| author | Andreas Schneider <mail@cynapses.org> | 2010-03-25 13:24:59 +0100 |
|---|---|---|
| committer | Andreas Schneider <mail@cynapses.org> | 2010-03-25 13:24:59 +0100 |
| commit | ea92d5b2301322298eae55ad5ea1065e26fdeb8e (patch) | |
| tree | d8f32d0f8cb427535ad779eccc8e5773345f42f9 | |
| parent | f096e031ed9649f22fe56cc476d088b56f0c8c28 (diff) | |
Added comments to the so version to increment it correctly in future.
| -rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d8d1143..0c194b86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,6 +12,13 @@ set(APPLICATION_VERSION_PATCH "2") set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}${APPLICATION_VERSION_MINOR}${APPLICATION_VERSION_PATCH}") +# Set the lib CURRENT.AGE.REVISION version info +# If the source code was changed, but there were no interface changes: +# Increment REVISION. +# If there was a compatible interface change: +# Increment CURRENT and AGE. Set REVISION to 0 +# If there was an incompatible interface change: +# Increment CURRENT. Set AGE and REVISION to 0 set(LIBRARY_VERSION "4.0.2") set(LIBRARY_SOVERSION "4") |
