aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-05 13:29:20 -0400
committerDavid Robillard <d@drobilla.net>2023-05-05 13:40:29 -0400
commit5b1b8f450e882f7cd80f2ba2a44ee781cf599a20 (patch)
tree0ad40bf1754367ae461ad9b3aaffe64ec74d3a29 /meson_options.txt
parent23434e047960f5bdb4fdc8e643daf5f4ad36dd5e (diff)
downloadserd-5b1b8f450e882f7cd80f2ba2a44ee781cf599a20.tar.gz
serd-5b1b8f450e882f7cd80f2ba2a44ee781cf599a20.tar.bz2
serd-5b1b8f450e882f7cd80f2ba2a44ee781cf599a20.zip
Add options to disable html or singlehtml documentation
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index ebaaffa0..7fe112a4 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -7,9 +7,15 @@ option('checks', type: 'feature', value: 'enabled', yield: true,
option('docs', type: 'feature', value: 'auto', yield: true,
description: 'Build documentation')
+option('html', type: 'feature', value: 'auto', yield: true,
+ description: 'Build paginated HTML documentation')
+
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
+option('singlehtml', type: 'feature', value: 'auto', yield: true,
+ description: 'Build single-page HTML documentation')
+
option('static', type: 'boolean', value: false, yield: true,
description: 'Statically link executables')