summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..ae4ba54
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,25 @@
+option('ca_certificates',
+ type: 'boolean',
+ value: false,
+ description: 'Whether to use a pre-specified Certificate Authority list (see the ca_certificates_path option)',
+)
+option('ca_certificates_path',
+ type: 'string',
+ value: '',
+ description: 'List of paths to the system Certificate Authority list. If empty, a default set of paths will be tried.',
+)
+option('introspection',
+ type: 'boolean',
+ value: true,
+ description: 'Generate GObject Introspection (.gir) files',
+)
+option('examples',
+ type: 'boolean',
+ value: true,
+ description: 'Build the examples',
+)
+option('gtk_doc',
+ type: 'boolean',
+ value: false,
+ description: 'Build the gtk-doc reference docs',
+)