┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Sitter <[email protected]>2015-08-19 10:59:46 +0200
committerHarald Sitter <[email protected]>2015-08-19 10:59:46 +0200
commit31f0acc72653972845f83abd60eaffde511801f1 (patch)
tree43c9a1fab58eed72e05e15701fe0b78db6a089b5
parent1eddb9a4cbed36a0879dfba513572e7340b1be63 (diff)
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
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)
##########################################