aboutsummaryrefslogtreecommitdiff
path: root/modules/FindHSPELL.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-01-28 21:00:21 +0000
committerAlexander Neundorf <neundorf@kde.org>2007-01-28 21:00:21 +0000
commit923ea3d1931fb19628575b453889e026b6a706fe (patch)
treea1ffdaf31f8d02722fd85cce7e3543ac97ea044c /modules/FindHSPELL.cmake
parent80f388401eb4233a5ca20ab4b1b5a6df3d1cc12a (diff)
downloadextra-cmake-modules-923ea3d1931fb19628575b453889e026b6a706fe.tar.gz
extra-cmake-modules-923ea3d1931fb19628575b453889e026b6a706fe.tar.bz2
-revert commit from Laurent, we have to discuss requiring cmake 2.4.5 (or 2.4.6) first before requiting it
Alex CCMAIL: montel@kde.org svn path=/trunk/KDE/kdelibs/; revision=628019
Diffstat (limited to 'modules/FindHSPELL.cmake')
-rw-r--r--modules/FindHSPELL.cmake42
1 files changed, 42 insertions, 0 deletions
diff --git a/modules/FindHSPELL.cmake b/modules/FindHSPELL.cmake
new file mode 100644
index 00000000..a2b93a77
--- /dev/null
+++ b/modules/FindHSPELL.cmake
@@ -0,0 +1,42 @@
+# - 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)
+