From: Harald Sitter Date: Wed, 19 Aug 2015 08:59:46 +0000 (+0200) Subject: do not install namelink for private library X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/31f0acc72653972845f83abd60eaffde511801f1?ds=inline do not install namelink for private library there are no headers being installed for the private library so it cannot be linked anyway, so we can also skip the namelink creation (.so symlink) REVIEW: 124812 --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 498e7c596..2a5e5a688 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -168,7 +168,7 @@ set_target_properties(dolphinprivate PROPERTIES SOVERSION ${DOLPHINPRIVATE_SOVERSION} ) -install(TARGETS dolphinprivate ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS dolphinprivate ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP) ##########################################