From c40f46aa4d2644b182b8ed554951e3afcb64c40a Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Tue, 3 May 2022 10:56:24 +0300 Subject: meson.build: Bump up meson version Bump meson version requirements to a much newer version + some minor compiler options which are handled directly by the build system. yocto seem to use meson 0.63 so we're more than fine bumping the verison for meson. Signed-off-by: Marius Vlad Change-Id: I69305b3b33e4919cb19ffa088b3530720f1b45c5 --- meson.build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 5f6c29d..0daf943 100644 --- a/meson.build +++ b/meson.build @@ -4,8 +4,9 @@ project('agl-compositor', default_options: [ 'warning_level=3', 'c_std=gnu99', + 'werror=true', ], - meson_version: '>= 0.47', + meson_version: '>= 0.53', license: 'MIT/Expat', ) @@ -21,8 +22,6 @@ add_project_arguments( cc.get_supported_arguments([ '-Wno-unused-parameter', '-Wno-pedantic', - '-Wextra', - '-Werror' ]), language: 'c' ) -- cgit 1.2.3-korg