aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2021-11-05 12:45:56 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-11-08 09:28:55 +0000
commitec2e5403f14892047f391f63982bf5e4b30438c2 (patch)
treec5d8a6411f616de2d35ebdef6b37a93f922d6bc8 /cli
parent7a7bc2e44409a1b07c745fc373c071ed0610c6c9 (diff)
build,meson: Make feature options boolean
Different options are set as `feature`, also every possible plugin, but this may cause confusion. All options set as `feature` but plugins have been made `boolean` to avoid further confusions. `help2man` is also installed in the CI image because is required to build different libraries.
Diffstat (limited to 'cli')
-rw-r--r--cli/meson.build9
1 files changed, 5 insertions, 4 deletions
diff --git a/cli/meson.build b/cli/meson.build
index 24d3f8ee..b020749b 100644
--- a/cli/meson.build
+++ b/cli/meson.build
@@ -26,10 +26,11 @@ sources = files(
'mmcli-sms.c',
)
-deps = [
- gudev_dep,
- libmm_glib_dep,
-]
+deps = [libmm_glib_dep]
+
+if enable_udev
+ deps += gudev_dep
+endif
executable(
'mmcli',