summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2020-11-08 20:12:04 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-05-05 08:52:51 +0000
commit89c619ec1c5355353e03e7ae5ccc8264e4e5cfb2 (patch)
tree53d0a8adeda8de53028900a1a7b63c8e27cfe738 /meson_options.txt
parent29fab8a1d4496ca5a1d32bb486013b1868a718ba (diff)
downloadlibqmi-89c619ec1c5355353e03e7ae5ccc8264e4e5cfb2.tar.gz
build: Port to meson build system
meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 00000000..71e4c5ec
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,14 @@
+option('collection', type: 'combo', choices: ['minimal', 'basic', 'full'], value: 'full', description: 'message collection to build')
+
+option('firmware_update', type: 'boolean', value: true, description: 'enable compilation of `qmi-firmware-update')
+
+option('mbim_qmux', type: 'boolean', value: false, 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: 'boolean', value: false, description: 'enable support for QRTR protocol')
+
+option('udev', type: 'boolean', value: true, description: 'build udev support')
+option('udevdir', type: 'string', value: '', description: 'where udev base directory is')
+
+option('introspection', type: 'boolean', value: 'true', description: 'build introspection support')
+option('gtk_doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')