aboutsummaryrefslogtreecommitdiff
path: root/modules/FindASPELL.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/FindASPELL.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/FindASPELL.cmake')
-rw-r--r--modules/FindASPELL.cmake40
1 files changed, 0 insertions, 40 deletions
diff --git a/modules/FindASPELL.cmake b/modules/FindASPELL.cmake
deleted file mode 100644
index 978407d6..00000000
--- a/modules/FindASPELL.cmake
+++ /dev/null
@@ -1,40 +0,0 @@
-# - Try to find ASPELL
-# Once done this will define
-#
-# ASPELL_FOUND - system has ASPELL
-# ASPELL_INCLUDE_DIR - the ASPELL include directory
-# ASPELL_LIBRARIES - The libraries needed to use ASPELL
-# ASPELL_DEFINITIONS - Compiler switches required for using ASPELL
-
-# 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 (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
- # Already in cache, be silent
- SET(ASPELL_FIND_QUIETLY TRUE)
-ENDIF (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
-
-FIND_PATH(ASPELL_INCLUDE_DIR aspell.h )
-
-FIND_LIBRARY(ASPELL_LIBRARIES NAMES aspell aspell-15)
-
-IF (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
- SET(ASPELL_FOUND TRUE)
-ELSE (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
- SET(ASPELL_FOUND FALSE)
-ENDIF (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
-
-IF (ASPELL_FOUND)
- IF (NOT ASPELL_FIND_QUIETLY)
- MESSAGE(STATUS "Found ASPELL: ${ASPELL_LIBRARIES}")
- ENDIF (NOT ASPELL_FIND_QUIETLY)
-ELSE (ASPELL_FOUND)
- IF (ASPELL_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could NOT find ASPELL")
- ENDIF (ASPELL_FIND_REQUIRED)
-ENDIF (ASPELL_FOUND)
-
-MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES)