From a2081e66721a410b3c06623960c23676387ade93 Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 30 Jul 2020 04:30:31 +0200 Subject: [PATCH] explicitly specify warnlevel in meson we can't turn on 2 (or 3...) yet, since the warnings are too many --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 53092f1..980f05c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,8 @@ project('octacore', ['cpp'], version: '0.0.1', - default_options: ['buildtype=debugoptimized', 'cpp_std=c++17'], + default_options: [ + 'buildtype=debugoptimized', 'cpp_std=c++17', 'warning_level=1' + ], meson_version: '>=0.46' )