blob: da3fc2b095f4e80d0922fb37452db37e1e7b2f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt
index 3eeaa3b..070d040 100644
--- a/src/app/CMakeLists.txt
+++ b/src/app/CMakeLists.txt
@@ -19,6 +19,21 @@ endif (BUILD_QT_APP)
if (BUILD_KDE_APP)
find_package(KDE4 REQUIRED)
include (KDE4Defaults)
+
+ if (BUILD_SHARED_LIBS)
+ # FindKDE4Internal.cmake will overwrite our RPATH if LIB_INSTALL_DIR (which
+ # defaults to ${CMAKE_INSTALL_PREFIX}/lib) is not an implicit link directory.
+ # In practice this means that most values for CMAKE_INSTALL_PREFIX other
+ # than /usr will cause the RPATH to be overwritten and the kid3 executable
+ # will not find its libraries. This happens also for the default value
+ # /usr/local for CMAKE_INSTALL_PREFIX.
+ # The RPATH is set again here to reverse this.
+ list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${WITH_LIBDIR}" _isSystemDir)
+ if ("${_isSystemDir}" STREQUAL "-1")
+ set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${WITH_LIBDIR}")
+ endif ("${_isSystemDir}" STREQUAL "-1")
+ endif (BUILD_SHARED_LIBS)
+
add_subdirectory(kde)
kde4_install_icons(${ICON_INSTALL_DIR})
endif (BUILD_KDE_APP)
|