aboutsummaryrefslogtreecommitdiff
path: root/modules/FindHSPELL.cmake
diff options
context:
space:
mode:
authorLaurent Montel <montel@kde.org>2007-01-27 12:55:29 +0000
committerLaurent Montel <montel@kde.org>2007-01-27 12:55:29 +0000
commit1fb5bcae073e078d25bbd6858cc416759b9de47e (patch)
tree69d30d1e6e02b840df461dffe9aa67ed4594cf1d /modules/FindHSPELL.cmake
parent1f724d6c01e65eb2a068aea968d34c140589da29 (diff)
downloadextra-cmake-modules-1fb5bcae073e078d25bbd6858cc416759b9de47e.tar.gz
extra-cmake-modules-1fb5bcae073e078d25bbd6858cc416759b9de47e.tar.bz2
Remove module which are now into cmake-2.4.5
FindLibXslt.cmake can be remove there is different from cmake file (test xsltproc) and FindOpenSSL.cmake (I must look at difference) svn path=/trunk/KDE/kdelibs/; revision=627623
Diffstat (limited to 'modules/FindHSPELL.cmake')
-rw-r--r--modules/FindHSPELL.cmake42
1 files changed, 0 insertions, 42 deletions
diff --git a/modules/FindHSPELL.cmake b/modules/FindHSPELL.cmake
deleted file mode 100644
index a2b93a77..00000000
--- a/modules/FindHSPELL.cmake
+++ /dev/null
@@ -1,42 +0,0 @@
-# - Try to find HSPELL
-# Once done this will define
-#
-# HSPELL_FOUND - system has HSPELL
-# HSPELL_INCLUDE_DIR - the HSPELL include directory
-# HSPELL_LIBRARIES - The libraries needed to use HSPELL
-# HSPELL_DEFINITIONS - Compiler switches required for using HSPELL
-
-# Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
-#
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
-
-IF (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
- # Already in cache, be silent
- SET(HSPELL_FIND_QUIETLY TRUE)
-ENDIF (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
-
-
-FIND_PATH(HSPELL_INCLUDE_DIR hspell.h )
-
-FIND_LIBRARY(HSPELL_LIBRARIES NAMES hspell )
-
-IF (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
- SET(HSPELL_FOUND TRUE)
-ELSE (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
- SET(HSPELL_FOUND FALSE)
-ENDIF (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
-
-IF (HSPELL_FOUND)
- IF (NOT HSPELL_FIND_QUIETLY)
- MESSAGE(STATUS "Found HSPELL: ${HSPELL_LIBRARIES}")
- ENDIF (NOT HSPELL_FIND_QUIETLY)
-ELSE (HSPELL_FOUND)
- IF (HSPELL_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could NOT find HSPELL")
- ENDIF (HSPELL_FIND_REQUIRED)
-ENDIF (HSPELL_FOUND)
-
-MARK_AS_ADVANCED(HSPELL_INCLUDE_DIR HSPELL_LIBRARIES)
-