diff options
-rw-r--r-- | mesonbuild/compilers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index bbe6a72..78f2c34 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -1854,6 +1854,9 @@ class VisualStudioCCompiler(CCompiler): result.append(i) return result + def get_werror_args(self): + return ['/WX'] + def get_include_args(self, path, is_system): if path == '': path = '.' |