diff options
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/meson.build | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/html/meson.build b/doc/html/meson.build new file mode 100644 index 0000000..7403e95 --- /dev/null +++ b/doc/html/meson.build @@ -0,0 +1,30 @@ +# Copyright 2021-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + +html_dir = docdir / versioned_name / 'html' + +custom_target( + 'html', + build_by_default: true, + command: [ + sphinx_build, '-M', 'html', '@OUTDIR@' / '..', '@OUTDIR@' / '..', + '-t', 'html', + ] + sphinx_flags, + input: [c_rst_files, c_zix_rst, c_index_xml, conf_py], + install: true, + install_dir: html_dir, + output: [ + '_static', + 'allocation.html', + 'api', + 'error_handling.html', + 'genindex.html', + 'index.html', + 'string_views.html', + 'using_zix.html', + ], +) + +if not meson.is_subproject() + summary('Paginated HTML', get_option('prefix') / html_dir, section: 'Directories') +endif |