diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:31:32 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:31:32 -0400 |
commit | 152cff7f33d10c9f02ca0993deb078b4ef672631 (patch) | |
tree | 5092afa17b2c7588c4b9f756a3a6c1d4ec035650 /doc/api | |
parent | 2ab71c76aa855b59cadf63235ac7ce6492ad9164 (diff) | |
download | lilv-152cff7f33d10c9f02ca0993deb078b4ef672631.tar.gz lilv-152cff7f33d10c9f02ca0993deb078b4ef672631.tar.bz2 lilv-152cff7f33d10c9f02ca0993deb078b4ef672631.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/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 1fffa6f..a470564 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_lilv_rst = custom_target( +api_lilv_rst = custom_target( 'lilv.rst', command: [sphinxygen, '-f', '@INPUT0@', '@OUTDIR@'], - input: [c_index_xml], + input: doxygen_xml, output: 'lilv.rst', ) |