From ad0627b9c10a49024445d8d4bbd647fb14e2279f Mon Sep 17 00:00:00 2001 From: Mitja HORVAT Date: Sun, 14 Nov 2021 09:11:35 +0100 Subject: [PATCH] c: Increase the compiler warning level to 3 --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 1b33af6..400d4eb 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,8 @@ project( default_options: ['warning_level=1', 'werror=true'], version : '0.1') +warning_level = 3 + PHOGEN_WORD_LIST = files('data/words_alpha.txt.backup') subdir('c')