diff options
author | David Faure <faure@kde.org> | 2007-02-05 20:56:23 +0000 |
---|---|---|
committer | David Faure <faure@kde.org> | 2007-02-05 20:56:23 +0000 |
commit | e22c0b65efc9163a33ed5573f261dfff57e37096 (patch) | |
tree | 3c04cf43c87a1eccb398c8011bf8c399478abb62 | |
parent | 9167e36c456be36bf92cf3891eaa39d850f87924 (diff) | |
download | extra-cmake-modules-e22c0b65efc9163a33ed5573f261dfff57e37096.tar.gz extra-cmake-modules-e22c0b65efc9163a33ed5573f261dfff57e37096.tar.bz2 |
Needed for other modules to use kdefakes without hardcoding the lib dir
svn path=/trunk/KDE/kdelibs/; revision=630595
-rw-r--r-- | modules/FindKDE4Internal.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index f5c621e1..2e849674 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -405,6 +405,9 @@ else (_kdeBootStrapping) # this file contains all dependencies of all libraries of kdelibs, Alex include(${kde_cmake_module_dir}/KDELibsDependencies.cmake) + find_library(KDE4_KDEFAKES_LIBRARY NAMES kdefakes PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) + set(KDE4_KDEFAKES_LIBS ${kdefakes_LIB_DEPENDS} ${KDE4_KDEFAKES_LIBRARY} ) + find_library(KDE4_KDECORE_LIBRARY NAMES kdecore PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) set(KDE4_KDECORE_LIBS ${kdecore_LIB_DEPENDS} ${KDE4_KDECORE_LIBRARY} ) |