summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-02 15:57:51 -0400
committerDavid Robillard <d@drobilla.net>2023-05-02 20:22:54 -0400
commitb759f6750645d32742e8c224f93063e692b4b278 (patch)
tree5e7f4b06425d80be191cbc23d67aee14c6eaa1dc /meson_options.txt
parenta09a60a814346b58a75a509f5bc5a41e543bae2c (diff)
downloaddrobillad-b759f6750645d32742e8c224f93063e692b4b278.tar.gz
drobillad-b759f6750645d32742e8c224f93063e692b4b278.tar.bz2
drobillad-b759f6750645d32742e8c224f93063e692b4b278.zip
Replace strict option with new meson warning level
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 6002087..a5c3a32 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,8 +1,8 @@
# Copyright 2021-2022 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
-option('checks', type: 'boolean', value: true, yield: true,
- description: 'Check for features with the build system')
+option('checks', type: 'feature', value: 'enabled', yield: true,
+ description: 'Check for platform-specific features')
option('docs', type: 'feature', value: 'auto',
description: 'Build documentation')
@@ -16,6 +16,9 @@ option('ingen', type: 'feature', value: 'auto',
option('jalv', type: 'feature', value: 'auto',
description: 'Build jalv')
+option('lint', type: 'boolean', value: false, yield: true,
+ description: 'Run code quality checks')
+
option('lv2dir', type: 'string', value: '', yield: true,
description: 'LV2 bundle installation directory')
@@ -31,8 +34,5 @@ option('plugins', type: 'feature', value: 'auto',
option('raul', type: 'feature', value: 'auto',
description: 'Build raul')
-option('strict', type: 'boolean', value: false, yield: true,
- description: 'Enable ultra-strict warnings')
-
option('tests', type: 'feature', value: 'auto', yield: true,
description: 'Build tests')