aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-15 07:42:23 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 13:50:43 -0400
commit0579dca6a5fae625efbbfe3b31167d855c8f966d (patch)
treebcf69a28dfb65f941e9540986a693fd4c612eb50 /meson_options.txt
parente1bcda7bd5ed51bf60157605bb087d2312e15e59 (diff)
downloadjalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.tar.gz
jalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.tar.bz2
jalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.zip
Switch to meson build system
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..9cdbe2f
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,35 @@
+option('checks', type: 'boolean', value: true, yield: true,
+ description: 'Check for features with the build system')
+
+option('cxx', type: 'feature', value: 'auto', yield: true,
+ description: 'Build C++ programs')
+
+option('gtk2', type: 'feature', value: 'auto', yield: true,
+ description: 'Build Gtk2 GUI')
+
+option('gtk3', type: 'feature', value: 'auto', yield: true,
+ description: 'Build Gtk3 GUI')
+
+option('portaudio', type: 'feature', value: 'auto', yield: true,
+ description: 'Build PortAudio driver')
+
+option('jack', type: 'feature', value: 'auto', yield: true,
+ description: 'Build JACK driver')
+
+option('posix', type: 'feature', value: 'auto', yield: true,
+ description: 'Use POSIX system facilities')
+
+option('qt5', type: 'feature', value: 'auto', yield: true,
+ description: 'Build Qt5 GUI')
+
+option('strict', type: 'boolean', value: false, yield: true,
+ description: 'Enable ultra-strict warnings')
+
+option('suil', type: 'feature', value: 'auto', yield: true,
+ description: 'Use suil to load plugin UIs')
+
+option('title', type: 'string', value: 'Jalv',
+ description: 'Project title')
+
+option('tests', type: 'feature', value: 'auto', yield: true,
+ description: 'Build tests')