diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:31:16 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:31:16 -0400 |
commit | a20595e543a7c6070f7e8453adfbbc3cfab32a52 (patch) | |
tree | d1a3660be974d94c3a70a6e7fb67de871f4be924 /doc/html | |
parent | a5d242b14d2b168bfe5d00e74227e672df2a8245 (diff) | |
download | serd-a20595e543a7c6070f7e8453adfbbc3cfab32a52.tar.gz serd-a20595e543a7c6070f7e8453adfbbc3cfab32a52.tar.bz2 serd-a20595e543a7c6070f7e8453adfbbc3cfab32a52.zip |
Explicitly specify all documentation dependencies
Yet another attempt to sort out flaky documentation builds. This tries to be
careful and describe the complete documentation dependency graph to meson
explicitly (ignoring tool outputs that aren't used). Also remove the shared
doctrees directory option, since I suspect this causes issues in parallel
builds.
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/html/meson.build b/doc/html/meson.build index f4a11b27..3e91bcaa 100644 --- a/doc/html/meson.build +++ b/doc/html/meson.build @@ -14,14 +14,15 @@ custom_target( sphinx_in_dir, '@OUTDIR@', ], - input: [conf_py, c_rst_files, c_serd_rst], + input: [api_serd_rst, conf_py, sphinx_input], install: true, install_dir: html_dir, output: [ + 'index.html', + '_static', 'api', 'genindex.html', - 'index.html', 'overview.html', ], ) |