From aa8f3778609d05bbbfd90791cdeb0c58b18c773b Mon Sep 17 00:00:00 2001 From: kramo Date: Sat, 28 Dec 2024 18:51:28 +0100 Subject: [PATCH] Add GTK and libadwaita dependency check in Meson See #322 --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index efa150ce..668d1732 100644 --- a/meson.build +++ b/meson.build @@ -8,6 +8,9 @@ project( ], ) +dependency('gtk4', version: '>= 4.15.0') +dependency('libadwaita-1', version: '>= 1.6.beta') + # Translations are broken on Windows for multiple reasons # gresources don't work and MSYS2 seems to have also broken the gettext package if host_machine.system() != 'windows'