diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:03:02 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 16:03:02 -0400 |
commit | 2ab71c76aa855b59cadf63235ac7ce6492ad9164 (patch) | |
tree | aeb69e93a9d836f0f504be109d1eedd6b5439e58 /doc/singlehtml/meson.build | |
parent | ecd07436b9f8a86773d5a109d99b7b802330d7cc (diff) | |
download | lilv-2ab71c76aa855b59cadf63235ac7ce6492ad9164.tar.gz lilv-2ab71c76aa855b59cadf63235ac7ce6492ad9164.tar.bz2 lilv-2ab71c76aa855b59cadf63235ac7ce6492ad9164.zip |
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'doc/singlehtml/meson.build')
-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 2cea8fd..055a9c2 100644 --- a/doc/singlehtml/meson.build +++ b/doc/singlehtml/meson.build @@ -9,7 +9,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_lilv_rst, c_rst_files, conf_py], @@ -22,5 +25,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 |