From: Marius Vlad Date: Tue, 3 May 2022 07:56:24 +0000 (+0300) Subject: meson.build: Bump up meson version X-Git-Tag: 13.93.0~21 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=c40f46aa4d2644b182b8ed554951e3afcb64c40a;p=src%2Fagl-compositor.git 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 --- 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' )