From 8605f66535e311d68da8fe7ed7496e191577179a Mon Sep 17 00:00:00 2001 From: Evgenii Alekseev Date: Thu, 1 Jan 2026 19:49:26 +0200 Subject: [PATCH] fix: compilation error with the latest releases (#173) As it has been found in the releated issue, compile error occurs because of missing evaluation and appears to be caused by Qt6QmlTargets.cmake. Instead of trying to hack generated files, lets just drop qml definitions because we don't really use them explicitly --- sources/libraries.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/libraries.cmake b/sources/libraries.cmake index 49889e6..1d41200 100644 --- a/sources/libraries.cmake +++ b/sources/libraries.cmake @@ -5,7 +5,7 @@ find_package(Gettext REQUIRED) find_package(Qt6 6.6.0 REQUIRED COMPONENTS Core Concurrent DBus Network Qml Test Widgets) add_definitions( ${Qt6Core_DEFINITIONS} ${Qt6DBus_DEFINITIONS} ${Qt6Network_DEFINITIONS} - ${Qt6Qml_DEFINITIONS} ${Qt6Widgets_DEFINITIONS} + ${Qt6Widgets_DEFINITIONS} ) set(Qt_INCLUDE ${Qt6Core_INCLUDE_DIRS} ${Qt6Concurrent_INCLUDE_DIRS} ${Qt6DBus_INCLUDE_DIRS} ${Qt6Network_INCLUDE_DIRS}