From b6ecd23cfb3c82c2c3f05795ebd9c65314e6367c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Jan 2023 17:46:36 -0500 Subject: MacOS: Consistently use the same flags for ObjC and ObjC++ The implementation only uses ObjC, but this is mistake-prone, it's better to just have things set up properly for all of the languages that are present in the build at all. --- meson/suppressions/meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'meson/suppressions') diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build index b3744f9..a6e6f43 100644 --- a/meson/suppressions/meson.build +++ b/meson/suppressions/meson.build @@ -139,6 +139,7 @@ if is_variable('objcc') '-Wno-poison-system-directories', ] - add_project_arguments(objcc.get_supported_arguments(objc_suppressions), - language: ['objc']) + objc_suppressions = objcc.get_supported_arguments(objc_suppressions) + add_project_arguments(objc_suppressions, language: ['objc']) + add_project_arguments(objc_suppressions, language: ['objcpp']) endif -- cgit v1.2.1