2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindHSPELL
|
|
|
|
# ----------
|
|
|
|
#
|
|
|
|
# Try to find Hspell
|
|
|
|
#
|
2006-09-20 00:11:53 +04:00
|
|
|
# Once done this will define
|
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# ::
|
2010-04-16 12:25:02 +04:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# HSPELL_VERSION_STRING - The version of Hspell found (x.y)
|
|
|
|
# HSPELL_MAJOR_VERSION - the major version of Hspell
|
|
|
|
# HSPELL_MINOR_VERSION - The minor version of Hspell
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2006-2009 Kitware, Inc.
|
|
|
|
# Copyright 2006 Alexander Neundorf <neundorf@kde.org>
|
2006-09-20 00:11:53 +04:00
|
|
|
#
|
2009-09-28 19:45:50 +04:00
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(HSPELL_INCLUDE_DIR hspell.h)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(HSPELL_LIBRARIES NAMES hspell)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (HSPELL_INCLUDE_DIR)
|
2012-08-19 15:54:56 +04:00
|
|
|
file(STRINGS "${HSPELL_INCLUDE_DIR}/hspell.h" HSPELL_H REGEX "#define HSPELL_VERSION_M(AJO|INO)R [0-9]+")
|
2012-08-13 21:47:32 +04:00
|
|
|
string(REGEX REPLACE ".*#define HSPELL_VERSION_MAJOR ([0-9]+).*" "\\1" HSPELL_VERSION_MAJOR "${HSPELL_H}")
|
|
|
|
string(REGEX REPLACE ".*#define HSPELL_VERSION_MINOR ([0-9]+).*" "\\1" HSPELL_VERSION_MINOR "${HSPELL_H}")
|
|
|
|
set(HSPELL_VERSION_STRING "${HSPELL_VERSION_MAJOR}.${HSPELL_VERSION_MINOR}")
|
2012-08-19 15:54:56 +04:00
|
|
|
unset(HSPELL_H)
|
2012-08-13 21:47:32 +04:00
|
|
|
endif()
|
2010-04-16 12:25:02 +04:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set HSPELL_FOUND to TRUE if
|
2007-07-19 17:00:51 +04:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2012-02-25 17:52:19 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(HSPELL
|
|
|
|
REQUIRED_VARS HSPELL_LIBRARIES HSPELL_INCLUDE_DIR
|
|
|
|
VERSION_VAR HSPELL_VERSION_STRING)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(HSPELL_INCLUDE_DIR HSPELL_LIBRARIES)
|
2006-09-20 00:11:53 +04:00
|
|
|
|