diff options
author | Aleix Pol Gonzalez <aleixpol@gmail.com> | 2008-04-04 14:28:05 +0000 |
---|---|---|
committer | Aleix Pol Gonzalez <aleixpol@gmail.com> | 2008-04-04 14:28:05 +0000 |
commit | 9adf0d066e86313a2f52e90804412321dda8eb0e (patch) | |
tree | a9f93d7e86c2493ae53d4addd7fa53c4d9be24f4 /modules | |
parent | 7d59b5e1ff6b37a3fe9f6c5a50ebcdca4a560d20 (diff) | |
download | extra-cmake-modules-9adf0d066e86313a2f52e90804412321dda8eb0e.tar.gz extra-cmake-modules-9adf0d066e86313a2f52e90804412321dda8eb0e.tar.bz2 |
Fixed an strange behaviour on the plasma finder.
svn path=/trunk/KDE/kdelibs/; revision=793596
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindPlasma.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/FindPlasma.cmake b/modules/FindPlasma.cmake index bafa6495..05a646b8 100644 --- a/modules/FindPlasma.cmake +++ b/modules/FindPlasma.cmake @@ -16,11 +16,13 @@ endif (PLASMA_INCLUDE_DIR AND PLASMA_LIBS) find_path(PLASMA_INCLUDE_DIR NAMES plasma/plasma.h PATHS + ${KDE4_INCLUDE_DIR} ${INCLUDE_INSTALL_DIR} ) find_library(PLASMA_LIBS NAMES plasma PATHS + ${KDE4_LIB_DIR} ${LIB_INSTALL_DIR} ) |