diff options
author | David Robillard <d@drobilla.net> | 2023-05-11 21:00:56 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-11 21:00:56 -0400 |
commit | 19d6da07a59e6230801fa7ae73b07391f6393098 (patch) | |
tree | 161e6775c999d748c3ae54ea3b87cd3cf5992318 /doc/singlehtml/meson.build | |
parent | 71b215560249747a2f1c3d16f9d372e5b668c45e (diff) | |
download | zix-19d6da07a59e6230801fa7ae73b07391f6393098.tar.gz zix-19d6da07a59e6230801fa7ae73b07391f6393098.tar.bz2 zix-19d6da07a59e6230801fa7ae73b07391f6393098.zip |
Clean up reference documentation
Diffstat (limited to 'doc/singlehtml/meson.build')
-rw-r--r-- | doc/singlehtml/meson.build | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build new file mode 100644 index 0000000..178e2dd --- /dev/null +++ b/doc/singlehtml/meson.build @@ -0,0 +1,24 @@ +# Copyright 2021-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + +singlehtml_dir = docdir / versioned_name / 'singlehtml' + +custom_target( + 'singlehtml', + build_by_default: true, + command: [ + sphinx_build, '-M', 'singlehtml', '@OUTDIR@' / '..', '@OUTDIR@' / '..', + '-t', 'singlehtml', + ] + sphinx_flags, + input: [c_rst_files, c_zix_rst, c_index_xml, conf_py], + install: true, + install_dir: singlehtml_dir, + output: [ + '_static', + 'index.html', + ], +) + +if not meson.is_subproject() + summary('Unified HTML', get_option('prefix') / singlehtml_dir, section: 'Directories') +endif |