aboutsummaryrefslogtreecommitdiffstats
path: root/doc/c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-23 18:53:15 -0400
committerDavid Robillard <d@drobilla.net>2023-09-23 18:53:15 -0400
commitf6f0ecfa0aa9872a582e22f2b839d500105aafa1 (patch)
treef4eae44cd0de87ee9e94bc8ffc76e55ecb28409b /doc/c
parenta347ffd2f45feb4e180dd470046436f51591bd91 (diff)
downloadpugl-f6f0ecfa0aa9872a582e22f2b839d500105aafa1.tar.gz
pugl-f6f0ecfa0aa9872a582e22f2b839d500105aafa1.tar.bz2
pugl-f6f0ecfa0aa9872a582e22f2b839d500105aafa1.zip
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'doc/c')
-rw-r--r--doc/c/meson.build32
1 files changed, 23 insertions, 9 deletions
diff --git a/doc/c/meson.build b/doc/c/meson.build
index 761557d..1401aa3 100644
--- a/doc/c/meson.build
+++ b/doc/c/meson.build
@@ -25,14 +25,14 @@ summary_rst = configure_file(
copied_rst_files = [deployment_rst, summary_rst]
c_rst_files = files(
+ 'clipboards.rst',
+ 'event-loop.rst',
+ 'events.rst',
'index.rst',
'overview.rst',
- 'world.rst',
+ 'shutting-down.rst',
'view.rst',
- 'events.rst',
- 'event-loop.rst',
- 'clipboards.rst',
- 'shutting-down.rst'
+ 'world.rst',
)
foreach f : c_rst_files
@@ -45,8 +45,15 @@ subdir('api')
docs = custom_target(
'singlehtml',
build_by_default: true,
- command: [sphinx_build, '-M', 'singlehtml', '@OUTDIR@', '@OUTDIR@',
- '-E', '-q', '-t', 'singlehtml'],
+ command: [
+ sphinx_build,
+ '-M', 'singlehtml',
+ '@OUTDIR@',
+ '@OUTDIR@',
+ '-E',
+ '-q',
+ '-t', 'singlehtml',
+ ],
input: [c_rst_files, copied_rst_files, c_pugl_rst, c_index_xml],
install: true,
install_dir: docdir / 'pugl-0',
@@ -56,8 +63,15 @@ docs = custom_target(
docs = custom_target(
'html',
build_by_default: true,
- command: [sphinx_build, '-M', 'html', '@OUTDIR@', '@OUTDIR@',
- '-E', '-q', '-t', 'html'],
+ command: [
+ sphinx_build,
+ '-M', 'html',
+ '@OUTDIR@',
+ '@OUTDIR@',
+ '-E',
+ '-q',
+ '-t', 'html',
+ ],
input: [c_rst_files, copied_rst_files, c_pugl_rst, c_index_xml],
install: true,
install_dir: docdir / 'pugl-0',