diff options
author | David Robillard <d@drobilla.net> | 2025-03-02 11:33:44 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-03-02 11:33:44 -0500 |
commit | 8b9a97eff86a6f9e0c3b21e329e34d6a4ff2ffa7 (patch) | |
tree | 5042eb23230e16d03f673c6a79ed9b89d6395491 | |
parent | 1808bd25624ec2e6c41ec744f978a0d7f482a638 (diff) | |
download | zix-main.tar.gz zix-main.tar.bz2 zix-main.zip |
This allows linting to be disabled in a parent project by passing "lint=false"
to dependency() as a default option.
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 9b5a599..4222993 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,7 +13,7 @@ option('docs', type: 'feature', yield: true, option('html', type: 'feature', yield: true, description: 'Build paginated HTML documentation') -option('lint', type: 'boolean', value: false, yield: true, +option('lint', type: 'boolean', value: false, description: 'Run code quality checks') option('posix', type: 'feature', yield: true, |