[plasma/plasma-bigscreen] /: Remove warning (found by cmake --warn-uninitialized -Werror=dev )
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit ee7c2a51e18eb5b1c88e864c519bd7b222be0d9a by Laurent Montel.
Committed on 28/07/2026 at 04:55.
Pushed by mlaurent into branch 'master'.
Remove warning (found by cmake --warn-uninitialized -Werror=dev )
M +1 -1 CMakeLists.txt
M +1 -1 envmanager/CMakeLists.txt
https://invent.kde.org/plasma/plasma-bigscreen/-/commit/ee7c2a51e18eb5b1c88e864c519bd7b222be0d9a
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6455d0f3..fa5d2e33 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,7 +21,7 @@ set(PROJECT_DEP_VERSION "6.6.90")
# See http://api.kde.org/ecm/manual/ecm.7.html
# and http://api.kde.org/ecm/manual/ecm-kde-modules.7.html
find_package(ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_MODULE_PATH})
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
include(ECMFindQmlModule)
include(KDEInstallDirs)
diff --git a/envmanager/CMakeLists.txt b/envmanager/CMakeLists.txt
index 2b4543e7..444d42c2 100644
--- a/envmanager/CMakeLists.txt
+++ b/envmanager/CMakeLists.txt
@@ -8,7 +8,7 @@ set(plasma-bigscreen-envmanager_SRCS
config.h
)
-add_executable(plasma-bigscreen-envmanager ${plasma-bigscreen-envmanager_SRCS} ${RESOURCES})
+add_executable(plasma-bigscreen-envmanager ${plasma-bigscreen-envmanager_SRCS})
target_link_libraries(plasma-bigscreen-envmanager
Qt::Qml
Qt::Gui