summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2017-04-26 16:42:13 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-04-26 20:37:34 -0500
commit24c68890024ca6653e6f2da0e8929c61e0ebfa0a (patch)
treea7d3aa6af3f17a7288f1a8c50bbaabb1008f308e /meson_options.txt
parent5e2afd83797c76400450c2ee3af85fe9c306bd86 (diff)
downloadepiphany-24c68890024ca6653e6f2da0e8929c61e0ebfa0a.tar.gz
Port to meson build system
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 000000000..82406ad14
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,23 @@
+option('distributor_name',
+ type: 'string',
+ value: 'GNOME Web',
+ description: 'Distributor name displayed on process crash page'
+)
+
+option('enable_firefox_sync',
+ type: 'boolean',
+ value: false,
+ description: 'Enable experimental Firefox Sync support'
+)
+
+option('enable_https_everywhere',
+ type: 'boolean',
+ value: false,
+ description: 'Enable experimental HTTPS Everywhere support'
+)
+
+option('enable_unit_tests',
+ type: 'boolean',
+ value: true,
+ description: 'Enable unit tests'
+)