[education/parley] /: Remove warning (found by cmake --warn-uninitialized -Werror=dev )
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 32b8e8b87514d79f588c2b75138d495ea6086114 by Laurent Montel.
Committed on 27/07/2026 at 18:07.
Pushed by mlaurent into branch 'master'.
Remove warning (found by cmake --warn-uninitialized -Werror=dev )
M +1 -1 CMakeLists.txt
https://invent.kde.org/education/parley/-/commit/32b8e8b87514d79f588c2b75138d495ea6086114
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 911da71f..25531398 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -103,7 +103,7 @@ endif(${LIBXSLT_FOUND} AND ${LIBXML2_FOUND})
if(X11_Xrender_FOUND)
message(STATUS "X11 Xrender found")
- set( parley_LINK_LIBS ${parley_LINK_LIBS} ${X11_LIBRARIES} ${X11_Xrender_LIB})
+ set( parley_LINK_LIBS ${X11_LIBRARIES} ${X11_Xrender_LIB})
else(X11_Xrender_FOUND)
message(STATUS "X11 Xrender not found, but not required")
endif(X11_Xrender_FOUND)