aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2006-03-22 20:41:56 +0000
committerAlexander Neundorf <neundorf@kde.org>2006-03-22 20:41:56 +0000
commit040888d87ea7de31f4f9b3fb2250acb9ae170690 (patch)
tree8c54eee0ceb1fe1c05239c5c96e1b1095e54daf1
parenta87518d9cc32131127f51acd3221403c0e981764 (diff)
downloadextra-cmake-modules-040888d87ea7de31f4f9b3fb2250acb9ae170690.tar.gz
extra-cmake-modules-040888d87ea7de31f4f9b3fb2250acb9ae170690.tar.bz2
-remove the LIB_SOMETHING variables
Alex svn path=/trunk/KDE/kdelibs/; revision=521561
-rw-r--r--modules/FindKDE4Internal.cmake64
1 files changed, 23 insertions, 41 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake
index 887ed493..5742b055 100644
--- a/modules/FindKDE4Internal.cmake
+++ b/modules/FindKDE4Internal.cmake
@@ -339,41 +339,34 @@ else(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h)
set(KDE4_KDNSSD_LIBS ${kdnssd_LIB_DEPENDS} ${KDE4_KDNSSD_LIBRARY} )
# now the KDE library directory, kxmlcore is new with KDE4
- find_library(KDE4_KXMLCORE_LIBRARY NAMES kxmlcore
- PATHS
- ${KDE4_LIB_INSTALL_DIR}
- $ENV{KDEDIR}/lib
- /opt/kde/lib
- /opt/kde4/lib
- /usr/lib
- /usr/local/lib)
+ find_library(KDE4_KXMLCORE_LIBRARY NAMES kxmlcore PATHS ${KDE4_LIB_INSTALL_DIR} )
set(KDE4_KXMLCORE_LIBRARIES ${kxmlcore_LIB_DEPENDS} ${KDE4_KXMLCORE_LIBRARY} )
get_filename_component(KDE4_LIB_DIR ${KDE4_KDECORE_LIBRARY} PATH )
- # at first the KDE include direcory
- # kpassworddialog.h is new with KDE4
- find_path(KDE4_INCLUDE_DIR kpassworddialog.h
- ${KDE4_INCLUDE_INSTALL_DIR}
- $ENV{KDEDIR}/include
- /opt/kde/include
- /opt/kde4/include
- /usr/local/include
- /usr/include/
- /usr/include/kde
- /usr/local/include/kde
- )
-
- #now search for the dcop utilities
- find_program(KDE4_DCOPIDL_EXECUTABLE NAME dcopidl PATHS
- ${KDE4_BIN_INSTALL_DIR}
- $ENV{KDEDIR}/bin
- /opt/kde/bin
- /opt/kde4/bin
- NO_SYSTEM_PATH
- NO_CMAKE_SYSTEM_PATH
- )
+ # at first the KDE include direcory
+ # kpassworddialog.h is new with KDE4
+ find_path(KDE4_INCLUDE_DIR kpassworddialog.h
+ ${KDE4_INCLUDE_INSTALL_DIR}
+ $ENV{KDEDIR}/include
+ /opt/kde/include
+ /opt/kde4/include
+ /usr/local/include
+ /usr/include/
+ /usr/include/kde
+ /usr/local/include/kde
+ )
+
+ #now search for the dcop utilities
+ find_program(KDE4_DCOPIDL_EXECUTABLE NAME dcopidl PATHS
+ ${KDE4_BIN_INSTALL_DIR}
+ $ENV{KDEDIR}/bin
+ /opt/kde/bin
+ /opt/kde4/bin
+ NO_SYSTEM_PATH
+ NO_CMAKE_SYSTEM_PATH
+ )
if (NOT KDE4_DCOPIDL_EXECUTABLE)
find_program(KDE4_DCOPIDL_EXECUTABLE NAME dcopidl )
@@ -426,17 +419,6 @@ else(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h)
find_program(KDE4_MEINPROC_EXECUTABLE NAME meinproc )
endif (NOT KDE4_MEINPROC_EXECUTABLE)
-
-# all the following are deprecated and should be changed to the KDE4_..._LIBRARIES ASAP, Alex
- set(LIB_KDECORE ${KDE4_KDECORE_LIBS})
- set(QT_AND_KDECORE_LIBS ${KDE4_KDECORE_LIBS})
- set(LIB_KDEUI ${KDE4_KDEUI_LIBRARIES})
- set(LIB_KIO ${KDE4_KIO_LIBRARIES})
- set(LIB_KPARTS ${KDE4_KPARTS_LIBRARIES})
- set(LIB_KUTILS ${KDE4_KUTILS_LIBRARIES})
- set(LIB_KDE3SUPPORT ${KDE4_KDE3SUPPORT_LIBRARIES})
-
-
endif(EXISTS ${CMAKE_SOURCE_DIR}/kdecore/kglobal.h)