diff options
author | Laurent Montel <montel@kde.org> | 2006-07-11 08:26:58 +0000 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2006-07-11 08:26:58 +0000 |
commit | ec206a794824e3b2874cb0433104be5c8c2c70b6 (patch) | |
tree | c87bf4321d5a52bb5cbc10e20aeddd905e61c50e | |
parent | 35569a895a571d903855aa685091cee582e4f22d (diff) | |
download | extra-cmake-modules-ec206a794824e3b2874cb0433104be5c8c2c70b6.tar.gz extra-cmake-modules-ec206a794824e3b2874cb0433104be5c8c2c70b6.tar.bz2 |
Add kdefx variabl
svn path=/trunk/KDE/kdelibs/; revision=560781
-rw-r--r-- | modules/FindKDE4Internal.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index cd1a7575..d30ee8cd 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -37,6 +37,7 @@ # KDE4_KDNSSD_LIBRARY - the kdnssd library # KDE4_PHONONCORE_LIBRARY - the phononcore library # KDE4_PHONONUI_LIBRARY - the phononui library +# KDE4_KDEFX_LIBRARY - the kdefx library # # Compared to the variables above, the following variables # also contain all of the depending libraries, so the variables below @@ -58,6 +59,7 @@ # KDE4_KDESU_LIBS - the kdesu library and all depending libraries # KDE4_PHONONCORE_LIBS - the phononcore library and all depending librairies # KDE4_PHONONUI_LIBS - the phononui library and all depending librairies +# KDE4_KDEFX_LIBS - the kdefx library and all depending librairies # # This module defines a bunch of variables used as locations # for install directories. They are all interpreted relative @@ -251,6 +253,7 @@ if(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h) set(KDE4_KIO_LIBS ${KDE4_KDEUI_LIBS} kio) set(KDE4_KPARTS_LIBS ${KDE4_KIO_LIBS} kparts) set(KDE4_KUTILS_LIBS ${KDE4_KIO_LIBS} kutils) + set(KDE4_KDEFX_LIBS ${KDE4_KDEFX_LIBS} kdefx) set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin ) @@ -321,6 +324,9 @@ else(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h) 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} ) + + find_library(KDE4_KDEFX_LIBRARY NAMES kdefx PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) + set(KDE4_KDEFX_LIBS ${kdefx_LIB_DEPENDS} ${KDE4_KDEFX_LIBRARY} ) find_library(KDE4_KDEUI_LIBRARY NAMES kdeui PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) set(KDE4_KDEUI_LIBS ${kdeui_LIB_DEPENDS} ${KDE4_KDEUI_LIBRARY} ) |