diff options
| author | Harald Sitter <[email protected]> | 2015-08-19 10:59:46 +0200 |
|---|---|---|
| committer | Harald Sitter <[email protected]> | 2015-08-19 10:59:46 +0200 |
| commit | 31f0acc72653972845f83abd60eaffde511801f1 (patch) | |
| tree | 43c9a1fab58eed72e05e15701fe0b78db6a089b5 | |
| parent | 1eddb9a4cbed36a0879dfba513572e7340b1be63 (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.txt | 2 |
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) ########################################## |
