diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt index 0912856..1545314 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,3 +1,6 @@ +# Copyright 2020-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + option('benchmarks', type: 'feature', value: 'auto', yield: true, description: 'Build benchmarks') @@ -7,12 +10,12 @@ option('checks', type: 'feature', value: 'enabled', yield: true, option('docs', type: 'feature', value: 'auto', yield: true, description: 'Build 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('strict', type: 'boolean', value: false, yield: true, - description: 'Enable ultra-strict warnings') - option('threads', type: 'feature', value: 'auto', yield: true, description: 'Enable thread support') |