aboutsummaryrefslogtreecommitdiff
path: root/modules/FindHSPELL.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindHSPELL.cmake')
-rw-r--r--modules/FindHSPELL.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindHSPELL.cmake b/modules/FindHSPELL.cmake
index 45475e9a..ba8b21aa 100644
--- a/modules/FindHSPELL.cmake
+++ b/modules/FindHSPELL.cmake
@@ -19,19 +19,19 @@ FIND_LIBRARY(HSPELL_LIBRARIES NAMES hspell
/usr/local/lib
)
-if(HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
+if (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
set(HSPELL_FOUND TRUE)
-endif(HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
+endif (HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES)
-if(HSPELL_FOUND)
- if(NOT HSPELL_FIND_QUIETLY)
+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)
+ 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)
+ endif (HSPELL_FIND_REQUIRED)
+endif (HSPELL_FOUND)
MARK_AS_ADVANCED(HSPELL_INCLUDE_DIR HSPELL_LIBRARIES)