From 0acab349a5948a75bc606f1f20d9f7bb0d845bfa Mon Sep 17 00:00:00 2001 From: Felix Andreas Date: Thu, 23 Mar 2023 01:37:07 +0100 Subject: [PATCH] refactor: Raise warning-level --- meson.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d6b5115..25a1239 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,8 @@ -project('neural', 'c', version: '0.1') +project('neural', 'c', version: '0.1', + default_options: [ + 'warning_level=3' + ] +) cc = meson.get_compiler('c') math_dep = cc.find_library('m')