summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-03-02 11:33:44 -0500
committerDavid Robillard <d@drobilla.net>2025-03-02 11:33:44 -0500
commit8b9a97eff86a6f9e0c3b21e329e34d6a4ff2ffa7 (patch)
tree5042eb23230e16d03f673c6a79ed9b89d6395491
parent1808bd25624ec2e6c41ec744f978a0d7f482a638 (diff)
downloadzix-main.tar.gz
zix-main.tar.bz2
zix-main.zip
Make meson lint option non-yieldingHEADmain
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.txt2
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,