diff options
author | David Faure <faure@kde.org> | 2007-05-21 14:15:06 +0000 |
---|---|---|
committer | David Faure <faure@kde.org> | 2007-05-21 14:15:06 +0000 |
commit | 23687aab9c367ac600e03d7ab4dbe1bc644ce359 (patch) | |
tree | 1dbb80008d7f8e4230ecc5c7aa253b2d88904e55 | |
parent | 8bcb43899b46f7a8b179ebf1f42447abb877166a (diff) | |
download | extra-cmake-modules-23687aab9c367ac600e03d7ab4dbe1bc644ce359.tar.gz extra-cmake-modules-23687aab9c367ac600e03d7ab4dbe1bc644ce359.tar.bz2 |
Ah! KDE4_INCLUDE_INSTALL_DIR is defined by KDELibsDependencies.cmake
svn path=/trunk/KDE/kdelibs/; revision=666996
-rw-r--r-- | modules/FindKDE4Internal.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 7cd499c3..9885774f 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -487,8 +487,8 @@ else (_kdeBootStrapping) get_filename_component(KDE4_LIB_DIR ${KDE4_KDECORE_LIBRARY} PATH ) # kpassworddialog.h is new with KDE4 - # ###### TODO: this is the wrong path to look into. We need the KDE4 include dir, not the one where the current module will be installed - find_path(KDE4_INCLUDE_DIR kpassworddialog.h ${INCLUDE_INSTALL_DIR} NO_DEFAULT_PATH ) + # KDE4_INCLUDE_INSTALL_DIR is defined by KDELibsDependencies.cmake + find_path(KDE4_INCLUDE_DIR kpassworddialog.h ${KDE4_INCLUDE_INSTALL_DIR} NO_DEFAULT_PATH ) # at first look in LIBEXEC_INSTALL_DIR and no default paths, # if this didn't succeed, the second call makes cmake search again, but in the standard paths |