diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 1545314..3eac738 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -10,12 +10,18 @@ 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('posix', type: 'feature', value: 'auto', yield: true, description: 'Use POSIX system facilities') +option('singlehtml', type: 'feature', value: 'auto', yield: true, + description: 'Build single-page HTML documentation') + option('threads', type: 'feature', value: 'auto', yield: true, description: 'Enable thread support') |