From 50616ad2932482d831f1c7c1a0f8afcf2ec4a7f0 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 10 Jul 2020 08:16:10 -0400 Subject: [PATCH] build: Add version.h to the headers list So it is properly installed and the gir contains the required information Fixes https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/issues/75 Part-of: --- ges/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ges/meson.build b/ges/meson.build index 0d722edd40..f2964f46b0 100644 --- a/ges/meson.build +++ b/ges/meson.build @@ -143,10 +143,10 @@ version_data.set('GES_VERSION_MINOR', gst_version_minor) version_data.set('GES_VERSION_MICRO', gst_version_micro) version_data.set('GES_VERSION_NANO', gst_version_nano) -configure_file(input : 'ges-version.h.in', +ges_headers += [configure_file(input : 'ges-version.h.in', output : 'ges-version.h', install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/ges'), - configuration : version_data) + configuration : version_data)] install_headers(ges_headers, subdir : 'gstreamer-1.0/ges')