summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 13:15:20 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 02:31:59 -0400
commit6ef785fad5cb4e9c162f295d7434d5690a13d029 (patch)
tree2d645f1efa9df5e2dab56b76a5c0cbef941d2178 /meson_options.txt
parentf31d96e901bfdbe5f05dc9ae077203c58a9f715a (diff)
downloaddrobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.tar.gz
drobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.tar.bz2
drobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.zip
Switch to meson build system
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt38
1 files changed, 38 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..ee2a3fe
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,38 @@
+# Copyright 2021-2022 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: CC0-1.0 OR ISC
+
+option('checks', type: 'boolean', value: true, yield: true,
+ description: 'Check for features with the build system')
+
+option('docs', type: 'feature', value: 'auto',
+ description: 'Build documentation')
+
+option('ganv', type: 'feature', value: 'auto',
+ description: 'Build ganv')
+
+option('ingen', type: 'feature', value: 'auto',
+ description: 'Build ingen')
+
+option('jalv', type: 'feature', value: 'auto',
+ description: 'Build jalv')
+
+option('lv2dir', type: 'string', value: '', yield: true,
+ description: 'LV2 bundle installation directory')
+
+option('lv2kit', type: 'feature', value: 'auto',
+ description: 'Build lv2kit')
+
+option('patchage', type: 'feature', value: 'auto',
+ description: 'Build patchage')
+
+option('plugins', type: 'feature', value: 'auto',
+ description: 'Build LV2 plugins')
+
+option('raul', type: 'feature', value: 'auto',
+ description: 'Build raul')
+
+option('strict', type: 'boolean', value: false, yield: true,
+ description: 'Enable ultra-strict warnings')
+
+option('tests', type: 'feature', value: 'auto', yield: true,
+ description: 'Build tests')