From 082ab41598a5333820a19ac01736b202d89cf85c Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 9 Mar 2025 21:45:20 +0100 Subject: [PATCH] meson: require 0.60.0 This introduces dependencies with multiple names which is used for the `sdbus_library` dependency of the `mpris` module. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e1f695a..67d3096 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('yambar', 'c', version: '1.11.0', license: 'MIT', - meson_version: '>=0.59.0', + meson_version: '>=0.60.0', default_options: ['c_std=c18', 'warning_level=1', 'b_ndebug=if-release'])