diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-01-28 21:00:21 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-01-28 21:00:21 +0000 |
commit | 923ea3d1931fb19628575b453889e026b6a706fe (patch) | |
tree | a1ffdaf31f8d02722fd85cce7e3543ac97ea044c /modules/FindASPELL.cmake | |
parent | 80f388401eb4233a5ca20ab4b1b5a6df3d1cc12a (diff) | |
download | extra-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/FindASPELL.cmake')
-rw-r--r-- | modules/FindASPELL.cmake | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/modules/FindASPELL.cmake b/modules/FindASPELL.cmake new file mode 100644 index 00000000..978407d6 --- /dev/null +++ b/modules/FindASPELL.cmake @@ -0,0 +1,40 @@ +# - 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) |