aboutsummaryrefslogtreecommitdiff
path: root/modules/FindHSPELL.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/FindHSPELL.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/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)