From 6064320336999ef35034cf44d4a09206e2104513 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Wed, 3 Dec 2025 18:01:21 +1000 Subject: [PATCH] fix: GuiPrivate is mandatory for linux Signed-off-by: Zephyron --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b35574801..19fd208d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -567,9 +567,9 @@ endif() function(set_citron_qt_components) # Best practice is to ask for all components at once, so they are from the same version -set(CITRON_QT_COMPONENTS2 Core Widgets Concurrent GuiPrivate) +set(CITRON_QT_COMPONENTS2 Core Widgets Concurrent) if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") -list(APPEND CITRON_QT_COMPONENTS2 DBus) +list(APPEND CITRON_QT_COMPONENTS2 DBus GuiPrivate) endif() if (CITRON_USE_QT_MULTIMEDIA) list(APPEND CITRON_QT_COMPONENTS2 Multimedia)