diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | meson_options.txt | 12 |
2 files changed, 8 insertions, 7 deletions
@@ -1,9 +1,10 @@ patchage (1.0.11) stable; urgency=medium + * Avoid over-use of yielding meson options * Convert man page to mdoc * Explicitly disable sprung layout menu item by default - -- David Robillard <d@drobilla.net> Mon, 11 Dec 2023 17:26:40 +0000 + -- David Robillard <d@drobilla.net> Wed, 30 Jul 2025 22:21:23 +0000 patchage (1.0.10) stable; urgency=medium diff --git a/meson_options.txt b/meson_options.txt index 56d585b..80b2569 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,19 +1,19 @@ -# Copyright 2022-2023 David Robillard <d@drobilla.net> +# Copyright 2022-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later -option('alsa', type: 'feature', yield: true, +option('alsa', type: 'feature', description: 'Build ALSA sequencer support') -option('checks', type: 'feature', value: 'enabled', yield: true, +option('checks', type: 'feature', value: 'enabled', description: 'Check for platform-specific features') -option('jack', type: 'feature', yield: true, +option('jack', type: 'feature', description: 'Build JACK audio and MIDI support') -option('jack_dbus', type: 'feature', yield: true, +option('jack_dbus', type: 'feature', description: 'Use JACK via D-Bus') -option('lint', type: 'boolean', value: false, yield: true, +option('lint', type: 'boolean', value: false, description: 'Run code quality checks') option('title', type: 'string', value: 'Patchage', |