[plasma/plasma5support] /: Remove warning (found by cmake --warn-uninitialized -Werror=dev )
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 99875a313720263df4c5267950ace658e365ed27 by Laurent Montel.
Committed on 28/07/2026 at 04:50.
Pushed by mlaurent into branch 'master'.
Remove warning (found by cmake --warn-uninitialized -Werror=dev )
M +2 -2 CMakeLists.txt
https://invent.kde.org/plasma/plasma5support/-/commit/99875a313720263df4c5267950ace658e365ed27
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e25c161..36226f6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -46,7 +46,7 @@ add_definitions(-DQT_NO_FOREACH)
find_package(Qt6 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Core Gui Quick Sql Qml Widgets Gui)
-find_package(KF6 ${KF_DEP_VERSION} REQUIRED
+find_package(KF6 ${KF6_MIN_VERSION} REQUIRED
COMPONENTS
Config
CoreAddons
@@ -93,7 +93,7 @@ endif()
add_subdirectory(src)
if (BUILD_TESTING)
- find_package(Qt6Test ${REQUIRED_QT_VERSION} REQUIRED)
+ find_package(Qt6Test ${QT_MIN_VERSION} REQUIRED)
add_subdirectory(autotests)
endif()