diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:29:44 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:29:44 -0400 |
commit | 9893383ec1f53e7c2443c1bc82861019f9125e8b (patch) | |
tree | a282baa45ad50ba97728f2ab52a0c19e711769bc /doc/api | |
parent | c03a9f6285e68286a6c666b6dc45f81be486928e (diff) | |
download | suil-9893383ec1f53e7c2443c1bc82861019f9125e8b.tar.gz suil-9893383ec1f53e7c2443c1bc82861019f9125e8b.tar.bz2 suil-9893383ec1f53e7c2443c1bc82861019f9125e8b.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/api')
-rw-r--r-- | doc/api/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/meson.build b/doc/api/meson.build index cdf4eb7..a5cecf8 100644 --- a/doc/api/meson.build +++ b/doc/api/meson.build @@ -1,9 +1,9 @@ # Copyright 2021-2022 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -c_suil_rst = custom_target( +api_suil_rst = custom_target( 'suil.rst', command: [sphinxygen, '-f', '@INPUT0@', '@OUTDIR@'], - input: [c_index_xml], + input: doxygen_xml, output: 'suil.rst', ) |