aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-07-30 14:37:48 -0400
committerDavid Robillard <d@drobilla.net>2025-07-30 14:37:48 -0400
commitef38d93a3d9af06eb7ef0cd7ecf2804be210f4e2 (patch)
treea9fd39e954db3ba041f42a0e1ba9a1b98f73de2c /meson_options.txt
parenta0d9567c18a5538912eb8e363b650e23b211beb1 (diff)
downloadlv2-ef38d93a3d9af06eb7ef0cd7ecf2804be210f4e2.tar.xz
Avoid over-use of yielding meson options
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt16
1 files changed, 8 insertions, 8 deletions
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 <d@drobilla.net>
+# Copyright 2021-2025 David Robillard <d@drobilla.net>
# 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',