diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:27:35 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:27:35 -0400 |
commit | f1eff805e3160cf9eac26dad84f56f5a3338bcb3 (patch) | |
tree | 73ba8f4147f0f009e741b3f46ae14489d964e762 /doc/html/meson.build | |
parent | 58993e08dba6fc9d93184df5a79f914d0c9141cd (diff) | |
download | zix-f1eff805e3160cf9eac26dad84f56f5a3338bcb3.tar.gz zix-f1eff805e3160cf9eac26dad84f56f5a3338bcb3.tar.bz2 zix-f1eff805e3160cf9eac26dad84f56f5a3338bcb3.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).
Diffstat (limited to 'doc/html/meson.build')
-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 14ded6d..fb84a04 100644 --- a/doc/html/meson.build +++ b/doc/html/meson.build @@ -13,16 +13,17 @@ custom_target( '@OUTDIR@' / '..', '-t', 'html', ] + sphinx_flags, - input: [c_rst_files, c_zix_rst, c_index_xml, conf_py], + input: [api_zix_rst, conf_py, sphinx_input], install: true, install_dir: html_dir, output: [ + 'index.html', + '_static', 'allocation.html', 'api', 'error_handling.html', 'genindex.html', - 'index.html', 'string_views.html', 'using_zix.html', ], |