From e3224ead98f2bea44fc92184c33edcbca98341b4 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 6 Apr 2020 07:46:48 +0200 Subject: [PATCH] build: add version to exactness libs this patch was submitted through the bugtracker by Andrew Brouwers. Thank you! fixes T8644 --- src/bin/exactness/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/exactness/meson.build b/src/bin/exactness/meson.build index 2dcf08ca51..2f2b2bb280 100644 --- a/src/bin/exactness/meson.build +++ b/src/bin/exactness/meson.build @@ -35,13 +35,15 @@ exactness_play_bin = library('exactness_play', dependencies: [ elementary ], c_args: '-DDATA_DIR="'+join_paths(dir_data, 'exactness')+'"', install: true, - ) + version : meson.project_version() +) exactness_record_bin = library('exactness_record', [ 'recorder.c', 'common.c', 'common.h' ], dependencies: [ elementary ], c_args: '-DDATA_DIR="'+join_paths(dir_data, 'exactness')+'"', install: true, + version : meson.project_version() ) exactness_env = configuration_data()