From 069c51521a3e838d9b5dc6b11845b64ccfce018d Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Sat, 3 May 2025 17:51:55 +0300 Subject: [PATCH] pcsclite: fix configuration summary "Use the PCSCLite library to access NFC devices" is otherwise always shown as "no" due to a typo. --- src/nfc/configure.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nfc/configure.cmake b/src/nfc/configure.cmake index c7ff9319..1f075dc7 100644 --- a/src/nfc/configure.cmake +++ b/src/nfc/configure.cmake @@ -12,6 +12,6 @@ qt_feature("neard" PUBLIC CONDITION LINUX AND QT_FEATURE_dbus AND NOT QT_FEATURE_pcsclite) qt_configure_add_summary_section(NAME "Qt Nfc details") -qt_configure_add_summary_entry(ARGS pcslite) +qt_configure_add_summary_entry(ARGS pcsclite) qt_configure_add_summary_entry(ARGS neard) qt_configure_end_summary_section()