summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-04-23 20:11:05 -0400
committerDavid Robillard <d@drobilla.net>2023-04-24 11:53:58 -0400
commit9e966d0f5a11bb43d17a56aab1ed9a43b8c2a112 (patch)
treefc53dce291cacd241c69b647e0762bd18bb8e67c /meson_options.txt
parentf6a7739f2bd5b556c40be445051c308586067231 (diff)
downloadzix-9e966d0f5a11bb43d17a56aab1ed9a43b8c2a112.tar.gz
zix-9e966d0f5a11bb43d17a56aab1ed9a43b8c2a112.tar.bz2
zix-9e966d0f5a11bb43d17a56aab1ed9a43b8c2a112.zip
Replace strict option with new meson warning level
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt9
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')