aboutsummaryrefslogtreecommitdiff
path: root/modules/FindASPELL.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindASPELL.cmake')
-rw-r--r--modules/FindASPELL.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindASPELL.cmake b/modules/FindASPELL.cmake
index 855f55c7..9d856c60 100644
--- a/modules/FindASPELL.cmake
+++ b/modules/FindASPELL.cmake
@@ -19,18 +19,18 @@ FIND_LIBRARY(ASPELL_LIBRARIES NAMES aspell aspell-15
/usr/local/lib
)
-if(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
+if (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
set(ASPELL_FOUND TRUE)
-endif(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
+endif (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES)
-if(ASPELL_FOUND)
- if(NOT ASPELL_FIND_QUIETLY)
+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)
+ 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)
+ endif (ASPELL_FIND_REQUIRED)
+endif (ASPELL_FOUND)
MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES)