summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2020-06-05 16:49:24 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2020-06-05 16:57:16 -0300
commitba841dbcf448eb275c327d06ce972ad0ae80b640 (patch)
tree6e2829956ffe7f4abd76306562f890327ccd74bc
parent114124702e7ba506be754ef0cbb0c94a09153ad5 (diff)
downloadglade-ba841dbcf448eb275c327d06ce972ad0ae80b640.tar.gz
Build: Add comments about library versioning
-rw-r--r--meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 0c125061..729e6df6 100644
--- a/meson.build
+++ b/meson.build
@@ -34,6 +34,12 @@ gladeui_minor_version = version_array[1].to_int()
gladeui_libname = '@0@-@1@'.format(gladeui_name, gladeui_version)
+# If the source code has changed at all, increment gladeui_revision
+# If any interfaces have been added, removed, or changed, increment gladeui_current, and set gladeui_revision to 0.
+# If any interfaces have been added since the last public release, then increment gladeui_age.
+# If any interfaces have been removed since the last public release, then set gladeui_age to 0.
+# Reference: http://www.gnu.org/software/libtool/manual/libtool.html#Versioning
+
gladeui_revision = 0
gladeui_current = 12
gladeui_age = 0