[games/pumoku] /: Remove warning (found by cmake --warn-uninitialized -Werror=dev )
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit bed16c965e9a9c9f18010f36522dab419a2244b2 by Laurent Montel.
Committed on 22/07/2026 at 06:46.
Pushed by mlaurent into branch 'master'.
Remove warning (found by cmake --warn-uninitialized -Werror=dev )
M +1 -2 CMakeLists.txt
https://invent.kde.org/games/pumoku/-/commit/bed16c965e9a9c9f18010f36522dab419a2244b2
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e5241de..1fada06 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,7 +13,6 @@ set(KF6_MIN_VERSION 6.8.0)
find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH
- ${CMAKE_MODULE_PATH}
${ECM_MODULE_PATH}
)
@@ -105,7 +104,7 @@ find_package(
)
if(NOT ANDROID)
- find_package(KF6 ${KF_MIN_VERSION} OPTIONAL_COMPONENTS Crash)
+ find_package(KF6 ${KF6_MIN_VERSION} OPTIONAL_COMPONENTS Crash)
endif()
qt_policy(SET QTP0001 NEW)