aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBjörn Esser <besser82@fedoraproject.org>2017-12-27 17:06:52 +0100
committerBjörn Esser <besser82@fedoraproject.org>2017-12-27 18:00:13 +0100
commit71e42dae909c8e94f82873f9eee0c50f0284fbdd (patch)
tree08ebec5b7cf3983b6321e2fee884a7e00f267617 /include
parent48ecbff691c4d462af6aa4f345823baea67c18fd (diff)
libwlroots: Add shared library versioning
Diffstat (limited to 'include')
-rw-r--r--include/wlr/meson.build13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/wlr/meson.build b/include/wlr/meson.build
index 770673eb..84dc5ae9 100644
--- a/include/wlr/meson.build
+++ b/include/wlr/meson.build
@@ -1,10 +1,13 @@
version_array = meson.project_version().split('.')
version_data = configuration_data()
-version_data.set_quoted('WLR_VERSION_STR', meson.project_version())
-version_data.set('WLR_VERSION_MAJOR', version_array[0])
-version_data.set('WLR_VERSION_MINOR', version_array[1])
-version_data.set('WLR_VERSION_MICRO', version_array[2])
-version_data.set('WLR_VERSION_NUM', '(WLR_VERSION_MAJOR << 16) | (WLR_VERSION_MINOR << 8) | WLR_VERSION_MICRO')
+version_data.set_quoted('WLR_VERSION_STR', meson.project_version())
+version_data.set('WLR_VERSION_MAJOR', version_array[0])
+version_data.set('WLR_VERSION_MINOR', version_array[1])
+version_data.set('WLR_VERSION_MICRO', version_array[2])
+version_data.set('WLR_VERSION_NUM', '(WLR_VERSION_MAJOR << 16) | (WLR_VERSION_MINOR << 8) | WLR_VERSION_MICRO')
+version_data.set('WLR_VERSION_API_CURRENT', so_version[0])
+version_data.set('WLR_VERSION_API_REVISION', so_version[1])
+version_data.set('WLR_VERSION_API_AGE', so_version[2])
header_install_dir = 'include/@0@/wlr'.format(meson.project_name())
configure_file(output: 'config.h', install_dir: header_install_dir, configuration: conf_data)