From dbe5e1a7e147c3624e1a6b6a09ee8ba1ac7ec934 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 5 May 2023 12:48:15 -0400 Subject: Fail on documentation warnings when werror=true --- doc/c/meson.build | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'doc/c/meson.build') diff --git a/doc/c/meson.build b/doc/c/meson.build index 55da7cb0..3a6a3923 100644 --- a/doc/c/meson.build +++ b/doc/c/meson.build @@ -50,6 +50,11 @@ subdir('api') # Generate documentation with sphinx +sphinx_flags = ['-E', '-a', '-q'] +if get_option('werror') + sphinx_flags += ['-W'] +endif + # TODO: Add install_tag: 'doc' after requiring meson 0.60.0 custom_target( @@ -57,9 +62,8 @@ custom_target( build_by_default: true, command: [ sphinx_build, - '-M', 'singlehtml', '@OUTDIR@', '@OUTDIR@', - '-E', '-q', '-t', 'singlehtml', - ], + '-M', 'singlehtml', '@OUTDIR@', '@OUTDIR@', '-t', 'singlehtml', + ] + sphinx_flags, input: [c_rst_files, c_serd_rst, c_index_xml, conf_py], install: true, install_dir: docdir / versioned_name, @@ -71,9 +75,8 @@ custom_target( build_by_default: true, command: [ sphinx_build, - '-M', 'html', '@OUTDIR@', '@OUTDIR@', - '-E', '-q', '-t', 'html', - ], + '-M', 'html', '@OUTDIR@', '@OUTDIR@', '-t', 'html', + ] + sphinx_flags, input: [c_rst_files, c_serd_rst, c_index_xml, conf_py], install: true, install_dir: docdir / versioned_name, -- cgit v1.2.1