diff options
author | David Robillard <d@drobilla.net> | 2023-04-03 09:00:23 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-04-06 07:19:10 -0400 |
commit | f905bd8e17bfcee7240ee3174f5ed420043c8bad (patch) | |
tree | 0da35aa95bee7e21314af5cfdc5683d252efe009 /meson.build | |
parent | 92f7c078250df898b24fce3af1ed6a9ae7d0c029 (diff) | |
download | serd-f905bd8e17bfcee7240ee3174f5ed420043c8bad.tar.gz serd-f905bd8e17bfcee7240ee3174f5ed420043c8bad.tar.bz2 serd-f905bd8e17bfcee7240ee3174f5ed420043c8bad.zip |
Use new meson strict warning system
Meson includes warning_level=everything as of version 1.0.0, which supercedes
maintaining redundant lists of warning flags here.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meson.build b/meson.build index eb2547bb..0c0a41c2 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -# Copyright 2021-2022 David Robillard <d@drobilla.net> +# Copyright 2021-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC project('serd', ['c'], @@ -27,9 +27,6 @@ pkg = import('pkgconfig') cc = meson.get_compiler('c') # Set global warning flags -if get_option('strict') and not meson.is_subproject() - subdir('meson/warnings') -endif subdir('meson/suppressions') ################ |