diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 992dab8..8f7d3b0 100644 --- a/meson.build +++ b/meson.build @@ -55,6 +55,13 @@ if get_option('strict') c_warnings += [ '-Wno-poison-system-directories', ] + elif host_machine.system() == 'windows' + c_warnings += [ + '-Wno-deprecated-declarations', + '-Wno-format-nonliteral', + '-Wno-nonportable-system-include-path', + '-Wno-unused-macros', + ] endif elif cc.get_id() == 'gcc' c_warnings += [ |