[utilities/basket] src: cmake: do not install LibBasket development symlink
Pino Toscano <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 08bb21ac49df3c07f965fa623b08af4d7dd11208 by Pino Toscano.
Committed on 26/07/2026 at 07:03.
Pushed by pino into branch 'master'.
cmake: do not install LibBasket development symlink
LibBasket is an internal shared library with no development bits
installed; hence do not install the .so symlinks (on platforms that
have them).
M +1 -1 src/CMakeLists.txt
https://invent.kde.org/utilities/basket/-/commit/08bb21ac49df3c07f965fa623b08af4d7dd11208
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index c34f03f2..be292cb1 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -92,7 +92,7 @@ set_target_properties(LibBasket PROPERTIES
${BASKET_SOVERSION}
)
-install(TARGETS LibBasket DESTINATION ${KDE_INSTALL_LIBDIR})
+install(TARGETS LibBasket DESTINATION ${KDE_INSTALL_LIBDIR} LIBRARY NAMELINK_SKIP)
# Add unit tests after all variables have been set.
# If we save target_link_libraries to a variable, we can reuse it too