diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-09-13 19:58:24 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-09-13 19:58:24 +0000 |
commit | 1f010485d5e0ca81774c401c66af2612c47e6193 (patch) | |
tree | 0e3e95368d55fd82bf70c0bba8d437015c11e6e7 /modules/FindKDE4Internal.cmake | |
parent | 732ad856ea72cc791fac712c06eaf0b659d5ea53 (diff) | |
download | extra-cmake-modules-1f010485d5e0ca81774c401c66af2612c47e6193.tar.gz extra-cmake-modules-1f010485d5e0ca81774c401c66af2612c47e6193.tar.bz2 |
-minor performance improvement: use LIST(APPEND list item1 item2... ) instead of SET(list ${list} item1 item2)
-add some documentation
-rename KDE4_HANDLE_RPATH() to KDE4_HANDLE_RPATH_FOR_EXECUTABLE() and add a new KDE4_HANDLE_RPATH_FOR_LIBRARY(), so that rpath handling is now very centralized
This shouldn't cause a recompile for anybody, at least it didn't for me. If it does nevertheless, let me know.
Alex
svn path=/trunk/KDE/kdelibs/; revision=583926
Diffstat (limited to 'modules/FindKDE4Internal.cmake')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 6d57e6ac..82a7ae3f 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -506,7 +506,9 @@ if (UNIX) set( _KDE4_PLATFORM_INCLUDE_DIRS /usr/local/include ) # the rest is RPATH handling - + # here the defaults are set + # which are partly overwritten in kde4_handle_rpath_for_library() + # and kde4_handle_rpath_for_executable(), both located in KDE4Macros.cmake, Alex if (APPLE) set(CMAKE_INSTALL_NAME_DIR ${LIB_INSTALL_DIR}) else (APPLE) |