From ef38d93a3d9af06eb7ef0cd7ecf2804be210f4e2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 30 Jul 2025 14:37:48 -0400 Subject: Avoid over-use of yielding meson options --- NEWS | 1 + meson_options.txt | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/NEWS b/NEWS index fa67fb3..6bbadf7 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ lv2 (1.18.11) unstable; urgency=medium * Allow LV2_SYMBOL_EXPORT to be overridden + * Avoid over-use of yielding meson options * Fix pylint warning in test script * Override pkg-config dependency within meson * Remove troublesome lv2_atom_assert_double_fits_in_64_bits diff --git a/meson_options.txt b/meson_options.txt index 2661999..91882da 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,25 +1,25 @@ -# Copyright 2021-2022 David Robillard +# Copyright 2021-2025 David Robillard # SPDX-License-Identifier: 0BSD OR ISC -option('docs', type: 'feature', yield: true, +option('docs', type: 'feature', description: 'Build documentation') -option('lint', type: 'boolean', value: false, yield: true, +option('lint', type: 'boolean', value: false, description: 'Run code quality checks') -option('lv2dir', type: 'string', value: '', yield: true, +option('lv2dir', type: 'string', value: '', description: 'LV2 bundle installation directory') -option('old_headers', type: 'boolean', value: true, yield: true, +option('old_headers', type: 'boolean', value: true, description: 'Install backwards compatible headers at URI-style paths') -option('online_docs', type: 'boolean', value: false, yield: true, +option('online_docs', type: 'boolean', value: false, description: 'Build documentation for online hosting') -option('plugins', type: 'feature', yield: true, +option('plugins', type: 'feature', description: 'Build example plugins') -option('tests', type: 'feature', yield: true, +option('tests', type: 'feature', description: 'Build tests') option('title', type: 'string', value: 'LV2', -- cgit v1.2.1