summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-09-05 09:21:38 +0100
committerSimon McVittie <smcv@collabora.com>2022-09-05 17:35:57 +0100
commitfdab4745424c7477e5257a4fc0fff4e14ef664ef (patch)
tree72964414a4d8a49b4456d5f0962ba6925d988543 /meson_options.txt
parent29ac041beba6fc299fd4b5434af2382c2473e456 (diff)
Add a Meson build system
Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..7dc5218
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,30 @@
+# Copyright 2022 Collabora Ltd.
+# SPDX-License-Identifier: MIT
+
+option(
+ 'doc',
+ type: 'boolean',
+ value: false,
+ description: 'Enable documentation',
+)
+
+option(
+ 'installed_tests',
+ type: 'boolean',
+ value: false,
+ description: 'Enable "as-installed" testing',
+)
+
+option(
+ 'python',
+ type: 'string',
+ value: '',
+ description: 'Override the Python interpreter to use',
+)
+
+option(
+ 'tests',
+ type: 'boolean',
+ value: true,
+ description: 'Enable unit tests',
+)