FindHSPELL: no need to set QUIETLY explicitly

This commit is contained in:
Kovarththanan Rajaratnam 2010-04-16 10:09:07 +02:00
parent 8df8fd8868
commit 99313f4fe9
1 changed files with 2 additions and 9 deletions

View File

@ -20,21 +20,14 @@
# (To distributed this file outside of CMake, substitute the full
# License text for the above reference.)
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_PATH(HSPELL_INCLUDE_DIR hspell.h )
FIND_LIBRARY(HSPELL_LIBRARIES NAMES hspell )
FIND_LIBRARY(HSPELL_LIBRARIES NAMES hspell)
# handle the QUIETLY and REQUIRED arguments and set HSPELL_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(HSPELL DEFAULT_MSG HSPELL_LIBRARIES HSPELL_INCLUDE_DIR)
MARK_AS_ADVANCED(HSPELL_INCLUDE_DIR HSPELL_LIBRARIES)