diff --git a/meson.build b/meson.build index 5656131..8767849 100644 --- a/meson.build +++ b/meson.build @@ -8,6 +8,7 @@ project( i18n = import('i18n') gnome = import('gnome') +cc = meson.get_compiler('c') valac = meson.get_compiler('vala') @@ -27,6 +28,11 @@ add_project_arguments( language: 'c', ) +add_project_arguments( + cc.get_supported_arguments(['-Wno-tautological-pointer-compare']), + language: 'c', +) + subdir('data') subdir('src')