From 06a41125b43e46554d1389323461bbbc85fb8669 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 11 Apr 2025 08:43:02 +0200 Subject: [PATCH] CMake: Fix InputSupportPrivate build condition Fix the condition that decides whether to build InputSupportPrivate. The conflict resolution went wrong for b3b836e70388edcf1d18b114cd128c7b89a79199. The point of the commit is to disable InputSupportPrivate if QT_FEATURE_libinput is enabled but QT_FEATURE_xkbcommon is not. Change-Id: I58a924abcf9ab5469e14182d1fdbb3fd69c1e74f Reviewed-by: Alexandru Croitor --- src/platformsupport/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/platformsupport/CMakeLists.txt b/src/platformsupport/CMakeLists.txt index 6899250b308..6c236883d88 100644 --- a/src/platformsupport/CMakeLists.txt +++ b/src/platformsupport/CMakeLists.txt @@ -6,7 +6,6 @@ add_subdirectory(fbconvenience) if(QT_FEATURE_evdev OR QT_FEATURE_vxworksevdev OR QT_FEATURE_integrityhid - OR QT_FEATURE_libinput OR QT_FEATURE_tslib OR (QT_FEATURE_libinput AND QT_FEATURE_xkbcommon)) add_subdirectory(input)