summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..b468923
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,32 @@
+# Copyright 2021-2023 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR ISC
+
+option('cocoa', type: 'feature', value: 'auto', yield: true,
+ description : 'Build Cocoa wrappers')
+
+option('docs', type: 'feature', value: 'auto', yield: true,
+ description: 'Build documentation')
+
+option('gtk2', type: 'feature', value: 'auto', yield: true,
+ description : 'Build Gtk2 wrappers')
+
+option('gtk3', type: 'feature', value: 'auto', yield: true,
+ description : 'Build Gtk3 wrappers')
+
+option('html', type: 'feature', value: 'auto', yield: true,
+ description: 'Build paginated HTML documentation')
+
+option('qt5', type: 'feature', value: 'auto', yield: true,
+ description : 'Build Qt5 wrappers')
+
+option('singlehtml', type: 'feature', value: 'auto', yield: true,
+ description: 'Build single-page HTML documentation')
+
+option('tests', type: 'feature', value: 'auto', yield: true,
+ description: 'Build tests')
+
+option('title', type: 'string', value: 'Suil',
+ description: 'Project title')
+
+option('x11', type: 'feature', value: 'auto', yield: true,
+ description : 'Build X11 wrappers')