diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2021-11-23 20:50:25 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-12-10 14:44:15 +0000 |
commit | c0bc469e505b91e006cb54bc98a9215614be2b52 (patch) | |
tree | 723ad050f02f7abd1aad954614debbddc3c57542 /meson.build | |
parent | 9e9c768ad6360ef5616f6aa87064975899802f9f (diff) |
meson.build: Bump compositor version
This bumps the compositor version to accomodate the protocol
update well.
Bug-AGL: SPEC-4133
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Iea01e3e36ef9ebf1f90e3fb07bd9637d8d060ab2
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 4f0e763..bc8961d 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('agl-compositor', 'c','cpp', - version: '0.0.19', + version: '0.0.20', default_options: [ 'warning_level=3', 'c_std=gnu99', @@ -10,7 +10,6 @@ project('agl-compositor', ) config_h = configuration_data() -agl_compositor_version = '0.0.19' libweston_version = 'libweston-8' pkgconfig = import('pkgconfig') fs = import('fs') @@ -279,9 +278,9 @@ exe_agl_compositor = executable( ) pkgconfig.generate( - filebase: 'agl-compositor-@0@-protocols'.format(agl_compositor_version), + filebase: 'agl-compositor-@0@-protocols'.format(meson.project_version()), name: 'agl-compositor private protocols', - version: agl_compositor_version, + version: meson.project_version(), description: 'agl-compositor protocol files', variables: [ 'datarootdir=' + join_paths('${prefix}', get_option('datadir')), |