aboutsummaryrefslogtreecommitdiff
path: root/modules/FindASPELL.cmake
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2006-03-20 21:05:37 +0000
committerAllen Winter <winter@kde.org>2006-03-20 21:05:37 +0000
commit191846e3e21c697c28bd5c8a166edeb4072161e3 (patch)
treedd41ca62b221ce0b3936c1dc9d518a01e6359bc6 /modules/FindASPELL.cmake
parent659abe0d63dd8d5a979d6584fdf9dfb7b9b6c6ff (diff)
downloadextra-cmake-modules-191846e3e21c697c28bd5c8a166edeb4072161e3.tar.gz
extra-cmake-modules-191846e3e21c697c28bd5c8a166edeb4072161e3.tar.bz2
minor cleanups: indenting, adding newline to end of file, etc.
svn path=/trunk/KDE/kdelibs/; revision=520790
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)