aboutsummaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-04-07 14:30:04 +0200
committerKenny Levinsen <kl@kl.wtf>2021-04-08 23:07:35 +0200
commit753c5276cf800ae1fb1c7747bfcdaeff5e45d6de (patch)
treeeedf49f48d13732556aeea0e7939ed9e2586c129 /meson_options.txt
parentee409138109c5f53310f0d81d2b591157b39d622 (diff)
build: don't allow "auto" for seatd, builtin, server and examples
These features don't have any dependencies, so "auto" doesn't make sense.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9c36fa3..144ce7a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,7 +1,7 @@
option('logind', type: 'combo', choices: ['auto', 'disabled', 'elogind', 'systemd'], value: 'auto', description: 'logind support')
-option('seatd', type: 'feature', value: 'enabled', description: 'seatd support')
-option('builtin', type: 'feature', value: 'disabled', description: 'builtin seatd server')
-option('server', type: 'feature', value: 'enabled', description: 'seatd server')
-option('examples', type: 'feature', value: 'disabled', description: 'libseat example programs')
+option('seatd', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd support')
+option('builtin', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'builtin seatd server')
+option('server', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd server')
+option('examples', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'libseat example programs')
option('man-pages', type: 'feature', value: 'auto', description: 'Generate and install man pages')
option('defaultpath', type: 'string', value: '', description: 'Default location for seatd socket (empty for default)')