summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2020-04-19 14:17:59 +0200
committerNiels De Graef <nielsdegraef@gmail.com>2020-04-19 14:24:41 +0200
commit77fa086cfd82d45fe4836a7aa748abbe95fe43e4 (patch)
treecf5a36d9ca74df09d83903ba595f2e5d9e05cd6e /meson_options.txt
parent42101865dc375e229eec2faba00bb2d94332f0f2 (diff)
downloadgnome-contacts-77fa086cfd82d45fe4836a7aa748abbe95fe43e4.tar.gz
Make Cheese a feature dependency
libcanberra-gtk got removed in the latest Flatpak runtime (3.38), so we can't build cheese as it hard depends on it. Luckily, we don't hard-depend on cheese, so let's get rid of it (for now). As an extra, this commit also makes Cheese an optional dependency, making it a bit easier to build it at the first go (without installing cheese-devel) and a shorter CI time.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index b83a1c7..101161c 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,5 @@
option('profile', type: 'combo', choices: [ 'default', 'development' ], value: 'default', description: 'Indicate whether this is a nightly build (used for CI purposes)')
-option('cheese', type: 'boolean', value: true, description: 'Enable cheese webcam support.')
+option('cheese', type: 'feature', value: 'auto', description: 'If enabled, allows creaing an avatar with the webcam')
option('telepathy', type: 'boolean', value: false, description: 'Enable Telepathy call/chat support.')
option('manpage', type: 'boolean', value: true, description: 'Enable building man pages.')
option('docs', type: 'boolean', value: false, description: 'Whether to build the valadoc docs.')