From 19d6da07a59e6230801fa7ae73b07391f6393098 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 11 May 2023 21:00:56 -0400 Subject: Clean up reference documentation --- doc/html/meson.build | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doc/html/meson.build (limited to 'doc/html/meson.build') 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 +# 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 -- cgit v1.2.1