summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-11-05 10:38:22 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-11-08 09:24:25 +0000
commit0b29792fa12fccb1b7f0c455225b646b82fdf24e (patch)
tree0ea47f6b8e2e12c3949aacc178684bc67a8d2611 /meson_options.txt
parent4210314cbd37142ceb5328ed14007b36338b3658 (diff)
downloadlibqmi-0b29792fa12fccb1b7f0c455225b646b82fdf24e.tar.gz
build: Make feature options boolean
Different options 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.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt
index bee5daac..3f3a22b0 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -5,17 +5,17 @@ option('collection', type: 'combo', choices: ['minimal', 'basic', 'full'], value
option('firmware_update', type: 'boolean', value: true, description: 'enable compilation of `qmi-firmware-update')
-option('mbim_qmux', type: 'feature', value: 'auto', description: 'enable support for QMI over MBIM QMUX service')
+option('mbim_qmux', type: 'boolean', value: true, description: 'enable support for QMI over MBIM QMUX service')
option('mm_runtime_check', type: 'boolean', value: true, description: 'build ModemManager runtime check support')
option('qmi_username', type: 'string', value: '', description: 'user allowed to access QMI devices')
-option('qrtr', type: 'feature', value: 'auto', description: 'enable support for QRTR protocol')
-option('rmnet', type: 'feature', value: 'auto', description: 'enable support for RMNET link management')
+option('qrtr', type: 'boolean', value: true, description: 'enable support for QRTR protocol')
+option('rmnet', type: 'boolean', value: true, description: 'enable support for RMNET link management')
-option('udev', type: 'feature', value: 'auto', description: 'build udev support')
+option('udev', type: 'boolean', value: true, description: 'build udev support')
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')