diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:21:27 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:21:27 -0400 |
commit | 58993e08dba6fc9d93184df5a79f914d0c9141cd (patch) | |
tree | e4791ca41a4b567b3e1fb46a38e3113df57e5a46 /doc/singlehtml | |
parent | e2e65a8c8b816a066da1f7a4843ca7f504c2b3d9 (diff) | |
download | zix-58993e08dba6fc9d93184df5a79f914d0c9141cd.tar.gz zix-58993e08dba6fc9d93184df5a79f914d0c9141cd.tar.bz2 zix-58993e08dba6fc9d93184df5a79f914d0c9141cd.zip |
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'doc/singlehtml')
-rw-r--r-- | doc/singlehtml/meson.build | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build index 178e2dd..0fea876 100644 --- a/doc/singlehtml/meson.build +++ b/doc/singlehtml/meson.build @@ -7,7 +7,10 @@ custom_target( 'singlehtml', build_by_default: true, command: [ - sphinx_build, '-M', 'singlehtml', '@OUTDIR@' / '..', '@OUTDIR@' / '..', + sphinx_build, + '-M', 'singlehtml', + '@OUTDIR@' / '..', + '@OUTDIR@' / '..', '-t', 'singlehtml', ] + sphinx_flags, input: [c_rst_files, c_zix_rst, c_index_xml, conf_py], @@ -20,5 +23,9 @@ custom_target( ) if not meson.is_subproject() - summary('Unified HTML', get_option('prefix') / singlehtml_dir, section: 'Directories') + summary( + 'Unified HTML', + get_option('prefix') / singlehtml_dir, + section: 'Directories', + ) endif |