From b36b19db32a2db5f9b4c48eba0c8f9b1e7231446 Mon Sep 17 00:00:00 2001 From: Robin Getz Date: Sat, 29 Apr 2023 08:06:08 -0400 Subject: [PATCH] cmake: tell people if we are/are not install udev rules we currently don't tell people if we are or aren't installing udev rules (which I think is an oversight). So do that. Signed-off-by: Robin Getz --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d9edf6d9c..1baa7c3d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -671,6 +671,7 @@ toggle_iio_feature("${WITH_USB_BACKEND}" usb) toggle_iio_feature("${WITH_TESTS}" utils) toggle_iio_feature("${WITH_EXAMPLES}" examples) toggle_iio_feature("${WITH_IIOD}" iiod) +toggle_iio_feature("${INSTALL_UDEV_RULE}" udev-rule) #add iiod settings list(APPEND IIO_FEATURES_ON ${IIOD_FEATURES_ON}) list(APPEND IIO_FEATURES_OFF ${IIOD_FEATURES_OFF})