summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 17:42:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 17:42:51 +0000
commitba429d344132c088177e853cce8ff7181570b221 (patch)
tree87ebf15269b4301737abd1735baabba71be93622 /meson_options.txt
parentInitial commit. (diff)
downloadgedit-ba429d344132c088177e853cce8ff7181570b221.tar.xz
gedit-ba429d344132c088177e853cce8ff7181570b221.zip
Adding upstream version 44.2.upstream/44.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..776efcf
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,24 @@
+option(
+ 'gtk_doc',
+ type: 'boolean', value: true,
+ description: 'Build API reference for plugins (requires gtk-doc)'
+)
+
+# If this option is kept to false, then it's an automatic behavior: if the
+# third party program is found, then the test is defined.
+# Setting this option to true will stop the configure phase with a hard error
+# if a third party program is not found and is required to define a test.
+option(
+ 'require_all_tests',
+ type: 'boolean', value: false,
+ description: 'Require that all tests can be run, even those that depend on third party programs'
+)
+
+# For developers. Disabling the option speeds up the install.
+option(
+ 'user_documentation',
+ type: 'boolean', value: true,
+ description: 'Build user documentation'
+)
+
+option('plugin_externaltools', type: 'boolean', value: true)