mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
meson: Add warning options
This commit is contained in:
parent
2e18e5dc6d
commit
a11c28a6fc
21
meson.build
21
meson.build
@ -52,6 +52,27 @@ endif
|
||||
# binaries
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
# global compiler flags
|
||||
|
||||
global_args = [
|
||||
# Enabled by warning_level=3
|
||||
# '-pedantic',
|
||||
# '-Wall',
|
||||
# '-Wextra',
|
||||
|
||||
'-Wshadow',
|
||||
'-Wpointer-arith',
|
||||
'-Wcast-align',
|
||||
'-Wwrite-strings',
|
||||
'-Wstrict-prototypes',
|
||||
'-Wmissing-prototypes',
|
||||
'-Wno-long-long',
|
||||
'-Wno-format-extra-args',
|
||||
'-Wno-array-bounds',
|
||||
]
|
||||
|
||||
add_global_arguments(global_args, language: 'c')
|
||||
|
||||
# options
|
||||
|
||||
# disabled by default
|
||||
|
Loading…
x
Reference in New Issue
Block a user