aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-11-13 16:45:17 -0500
committerDavid Robillard <d@drobilla.net>2025-11-13 16:46:14 -0500
commit24d70a1e94d37ccaa979724715273bdf7b5be062 (patch)
treeefdc28e13f765dd78463b03baf4ffa590a799ea9 /meson_options.txt
parent7cb031f12795a3f4a62428322e30a7ce60358a5c (diff)
downloadlv2-24d70a1e94d37ccaa979724715273bdf7b5be062.tar.xz
Add configuration options to control bundle and header installation
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 57a41f0..4b12f68 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -4,13 +4,19 @@
option('docs', type: 'feature',
description: 'Build documentation')
+option('bundles', type: 'boolean',
+ description: 'Install specification data bundles')
+
+option('headers', type: 'boolean',
+ description: 'Install new-style headers at simplified paths')
+
option('lint', type: 'boolean', value: false,
description: 'Run code quality checks')
option('lv2dir', type: 'string', value: '',
description: 'LV2 bundle installation directory')
-option('old_headers', type: 'boolean', value: true,
+option('old_headers', type: 'boolean',
description: 'Install backwards compatible headers at URI-style paths')
option('online_docs', type: 'boolean', value: false,