extensions: Ignore all C warnings in Vala

Vala is being silly again and emitting code that is generating a ton of
C warnings that we can't really do anything about. Just ignore all C
warnings (while keeping the Vala warnings of course).
This commit is contained in:
Niels De Graef 2025-07-07 18:10:47 +02:00
parent 76caac9481
commit 337c2bbde0

View file

@ -52,6 +52,7 @@ if have_vala and have_gobject_introspection
],
c_args: [
'-DGETTEXT_PACKAGE="@0@"'.format('org.gimp.extension.goat-exercises'),
'-w',
],
install: true,
install_dir: gimpplugindir / 'extensions' / extension_name,