From 71e8ad73b5afe4671da8103396cebc1e4fe6e4a5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 20 Jan 2025 13:11:00 -0500 Subject: Use "system" includes for dependencies and strengthen header test Things get confused when these flags differ across projects, so universally use "system" for external dependencies and test for header warnings only in the project that owns them. With this, we can remove all the suppressions that actually come from other projects and so can't be resolved here anyway. --- meson.build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index d66a893..43b6c1d 100644 --- a/meson.build +++ b/meson.build @@ -122,18 +122,21 @@ m_dep = cc.find_library('m', required: false) serd_dep = dependency( 'serd-0', fallback: 'serd', + include_type: 'system', version: '>= 0.30.10', ) sord_dep = dependency( 'sord-0', fallback: 'sord', + include_type: 'system', version: '>= 0.16.16', ) lv2_dep = dependency( 'lv2', fallback: 'lv2', + include_type: 'system', version: '>= 1.18.4', ) -- cgit v1.2.1