aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-02 15:39:57 -0400
committerDavid Robillard <d@drobilla.net>2023-05-02 17:32:00 -0400
commit94579ca4070b40cf7e690ee41bfdde16404df38f (patch)
treea29bc6c28bf76ff7f9e74015d3b8ae07cc009c24 /meson_options.txt
parentaa01af0cff161c27f357a8ab09510c77f5109ad0 (diff)
downloadjalv-94579ca4070b40cf7e690ee41bfdde16404df38f.tar.gz
jalv-94579ca4070b40cf7e690ee41bfdde16404df38f.tar.bz2
jalv-94579ca4070b40cf7e690ee41bfdde16404df38f.zip
Replace strict option with new meson warning level
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt13
1 files changed, 8 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index d420bf2..77cc20d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,8 @@
-option('checks', type: 'boolean', value: true, yield: true,
- description: 'Check for features with the build system')
+# Copyright 2020-2023 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR ISC
+
+option('checks', type: 'feature', value: 'enabled', yield: true,
+ description: 'Check for platform-specific features')
option('cxx', type: 'feature', value: 'auto', yield: true,
description: 'Build C++ programs')
@@ -13,15 +16,15 @@ option('portaudio', type: 'feature', value: 'auto', yield: true,
option('jack', type: 'feature', value: 'auto', yield: true,
description: 'Build JACK driver')
+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('qt5', type: 'feature', value: 'auto', yield: true,
description: 'Build Qt5 GUI')
-option('strict', type: 'boolean', value: false, yield: true,
- description: 'Enable ultra-strict warnings')
-
option('suil', type: 'feature', value: 'auto', yield: true,
description: 'Use suil to load plugin UIs')