diff options
author | Laurent Montel <montel@kde.org> | 2006-10-02 14:25:51 +0000 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2006-10-02 14:25:51 +0000 |
commit | 9c3b3719fcd6bca896aabea55dfee03853ee735f (patch) | |
tree | fd6f57b984f1763adfac6828e2df481d34b7c3dc /modules | |
parent | 3e0547ea2a57dcf96d319a6597903aec8628f437 (diff) | |
download | extra-cmake-modules-9c3b3719fcd6bca896aabea55dfee03853ee735f.tar.gz extra-cmake-modules-9c3b3719fcd6bca896aabea55dfee03853ee735f.tar.bz2 |
Add macro for solid lib
and fix comment
svn path=/trunk/KDE/kdelibs/; revision=591482
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index b9e3cdde..15d7baf5 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -39,6 +39,7 @@ # KDE4_PHONONUI_LIBRARY - the phononui library # KDE4_KDEFX_LIBRARY - the kdefx library # KDE4_THREADWEAVER_LIBRARY- the threadweaver library +# KDE4_SOLID_LIBRARY - the solid library # # Compared to the variables above, the following variables # also contain all of the depending libraries, so the variables below @@ -59,9 +60,10 @@ # KDE4_KDNSSD_LIBS - the kdnssd library and all depending libraries # 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_PHONONUI_LIBRARIES - the phononui library and all depending librairies # KDE4_KDEFX_LIBS - the kdefx library and all depending librairies -# KDE4_THREADWEAVER_LIBS - the threadweaver library and all depending libraries +# KDE4_THREADWEAVER_LIBRARIES- the threadweaver library and all depending libraries +# KDE4_SOLID_LIBS - the solid library and all depending libraries # # This module defines a bunch of variables used as locations # for install directories. They are all interpreted relative @@ -410,6 +412,9 @@ else(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h) find_library(KDE4_PHONONUI_LIBRARY NAMES phononui PATHS ${KDE4_LIB_INSTALL_DIR} ) set(KDE4_PHONONUI_LIBRARIES ${phononui_LIB_DEPENDS} ${KDE4_PHONONUI_LIBRARY} ) + find_library(KDE4_SOLID_LIBRARY NAMES solid PATHS ${KDE4_LIB_INSTALL_DIR} ) + set(KDE4_SOLID_LIBS ${solid_LIB_DEPENDS} ${KDE4_SOLID_LIBRARY} ) + find_library(KDE4_THREADWEAVER_LIBRARY NAMES threadweaver PATHS ${KDE4_LIB_INSTALL_DIR} ) set(KDE4_THREADWEAVER_LIBRARIES ${threadweaver_LIB_DEPENDS} ${KDE4_THREADWEAVER_LIBRARY} ) |