From 28f3e78e0ca0d5eb36d00fd8aef89eb0d1bacc93 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Tue, 12 Sep 2017 12:29:27 +0800 Subject: build: Fix .rc generation in Meson builds We need to specify the value for the ATK_VERSION variable as well, otherwise some version info of the DLL will not be set correctly. https://bugzilla.gnome.org/show_bug.cgi?id=785802 --- atk/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/atk/meson.build b/atk/meson.build index b014009..95942e0 100644 --- a/atk/meson.build +++ b/atk/meson.build @@ -78,6 +78,7 @@ atk_version_conf.set('ATK_MICRO_VERSION', atk_micro_version) atk_version_conf.set('ATK_BINARY_AGE', atk_binary_age) atk_version_conf.set('ATK_INTERFACE_AGE', atk_interface_age) atk_version_conf.set('LT_CURRENT_MINUS_AGE', '0') +atk_version_conf.set('ATK_VERSION', meson.project_version()) atk_version_h = configure_file(input: 'atkversion.h.in', output: 'atkversion.h', -- cgit v1.2.1