diff options
-rw-r--r-- | mesonbuild/modules/hotdoc.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/modules/hotdoc.py b/mesonbuild/modules/hotdoc.py index 6b3eb5f..02e07a9 100644 --- a/mesonbuild/modules/hotdoc.py +++ b/mesonbuild/modules/hotdoc.py @@ -309,6 +309,9 @@ class HotdocTargetBuilder: for path in self.include_paths.keys(): self.cmd.extend(['--include-path', path]) + + if self.state.environment.coredata.get_builtin_option('werror'): + self.cmd.append('--fatal-warning') self.generate_hotdoc_config() target_cmd = self.build_command + ["--internal", "hotdoc"] + \ |