diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2022-05-03 10:56:24 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2022-05-03 18:17:24 +0300 |
commit | c40f46aa4d2644b182b8ed554951e3afcb64c40a (patch) | |
tree | 7e31eaa16171af104a447fe23055d3ccf8c1c506 /meson.build | |
parent | 7a7b46bd7040b2814ad5f314818742bad990e93c (diff) |
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 <marius.vlad@collabora.com>
Change-Id: I69305b3b33e4919cb19ffa088b3530720f1b45c5
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files 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' ) |