summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-11-05 10:06:56 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-11-05 10:57:37 +0000
commit823372ac71fec186e95339179fa01816896bf2f4 (patch)
treeba12760943b6115c15b3341e21f78439ede0f2c8 /meson_options.txt
parentfdb7546d04655562a3915af44b9e5a579bad8591 (diff)
downloadlibmbim-823372ac71fec186e95339179fa01816896bf2f4.tar.gz
build: Make feature options boolean
The introspection and man support are set as `feature` but this may cause confusion. They have been made `boolean`. In order to always build man documentation, `help2man` is also installed in the CI builds.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index bfa33ab..e768e39 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,8 +5,8 @@ option('mbim_username', type: 'string', value: '', description: 'user allowed to
option('udevdir', type: 'string', value: '', description: 'where udev base directory is')
-option('introspection', type: 'feature', value: 'auto', description: 'build introspection support')
+option('introspection', type: 'boolean', value: true, description: 'build introspection support')
option('gtk_doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
-option('man', type: 'feature', value: 'auto', description: 'build man pages using help2man')
+option('man', type: 'boolean', value: true, description: 'build man pages using help2man')
option('bash_completion', type: 'boolean', value: true, description: 'install bash completion files')