aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
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')