diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/meson.build | 4 | ||||
-rw-r--r-- | doc/html/meson.build | 2 | ||||
-rw-r--r-- | doc/singlehtml/meson.build | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/meson.build b/doc/api/meson.build index b40af2f1..f4fc057a 100644 --- a/doc/api/meson.build +++ b/doc/api/meson.build @@ -1,9 +1,9 @@ -# Copyright 2020-2022 David Robillard <d@drobilla.net> +# Copyright 2020-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC c_serd_rst = custom_target( 'serd.rst', command: [sphinxygen, '-f', '@INPUT0@', '@OUTDIR@'], - input: [c_index_xml] + c_rst_files, + input: [c_index_xml], output: 'serd.rst', ) diff --git a/doc/html/meson.build b/doc/html/meson.build index d97d368b..f4a11b27 100644 --- a/doc/html/meson.build +++ b/doc/html/meson.build @@ -14,7 +14,7 @@ custom_target( sphinx_in_dir, '@OUTDIR@', ], - input: [c_rst_files, c_serd_rst, c_index_xml, conf_py], + input: [conf_py, c_rst_files, c_serd_rst], install: true, install_dir: html_dir, output: [ diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build index 47ecb9f8..8b92c349 100644 --- a/doc/singlehtml/meson.build +++ b/doc/singlehtml/meson.build @@ -14,7 +14,7 @@ custom_target( sphinx_in_dir, '@OUTDIR@', ], - input: [c_rst_files, c_serd_rst, c_index_xml, conf_py], + input: [conf_py, c_rst_files, c_serd_rst], install: true, install_dir: singlehtml_dir, output: [ |