From dfeb270fe0469730f29151eca3d8b609ef0f5806 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sun, 19 Jun 2022 13:00:04 +0100 Subject: [PATCH] don't enable fatal-warnings in debug builds too annoying to have it on all the time --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index af6b3555..7064634c 100644 --- a/meson.build +++ b/meson.build @@ -44,10 +44,9 @@ if get_option('optimization') in ['2', '3', 's'] add_project_arguments('-DG_DISABLE_ASSERT', language : ['cpp', 'c']) endif -# in debug mode we automatically enable leak checks and fatal warnings +# in debug mode we automatically enable leak checks # also true for 'debugoptimized' if get_option('debug') - add_project_arguments('-DDEBUG_FATAL', language : ['cpp', 'c']) add_project_arguments('-DDEBUG_LEAK', language : ['cpp', 'c']) endif