From 94579ca4070b40cf7e690ee41bfdde16404df38f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 2 May 2023 15:39:57 -0400 Subject: Replace strict option with new meson warning level --- meson_options.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'meson_options.txt') 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 +# 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') -- cgit v1.2.1