aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Rogers <mattr@kde.org>2006-09-22 03:41:57 +0000
committerMatt Rogers <mattr@kde.org>2006-09-22 03:41:57 +0000
commit48ffad86c45bd5a1dae0a8625a8e90b2f529f421 (patch)
tree0e24f8d9943d49a3cf6cec68f11460be2188fc1a
parent2e3652e0536bdd82fe17bafb24074d5cc0bfffd6 (diff)
downloadextra-cmake-modules-48ffad86c45bd5a1dae0a8625a8e90b2f529f421.tar.gz
extra-cmake-modules-48ffad86c45bd5a1dae0a8625a8e90b2f529f421.tar.bz2
add definitions for threadweaver
svn path=/trunk/KDE/kdelibs/; revision=587253
-rw-r--r--modules/FindKDE4Internal.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake
index 4464503d..24a69b9f 100644
--- a/modules/FindKDE4Internal.cmake
+++ b/modules/FindKDE4Internal.cmake
@@ -38,6 +38,7 @@
# KDE4_PHONONCORE_LIBRARY - the phononcore library
# KDE4_PHONONUI_LIBRARY - the phononui library
# KDE4_KDEFX_LIBRARY - the kdefx library
+# KDE4_THREADWEAVER_LIBRARY- the threadweaver library
#
# Compared to the variables above, the following variables
# also contain all of the depending libraries, so the variables below
@@ -60,6 +61,7 @@
# 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
+# KDE4_THREADWEAVER_LIBS - the threadweaver library and all depending libraries
#
# This module defines a bunch of variables used as locations
# for install directories. They are all interpreted relative
@@ -383,6 +385,8 @@ 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_THREADWEAVER_LIBRARY NAMES threadweaver PATHS ${KDE4_LIB_INSTALL_DIR} )
+ set(KDE4_THREADWEAVER_LIBRARIES $(threadweaver_LIB_DEPENDS} ${KDE4_THREADWEAVER_LIBRARY} )
get_filename_component(KDE4_LIB_DIR ${KDE4_KDECORE_LIBRARY} PATH )