aboutsummaryrefslogtreecommitdiff
path: root/modules/FindOpenSSL.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/FindOpenSSL.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/FindOpenSSL.cmake')
-rw-r--r--modules/FindOpenSSL.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindOpenSSL.cmake b/modules/FindOpenSSL.cmake
index 952d4c20..ada33cf0 100644
--- a/modules/FindOpenSSL.cmake
+++ b/modules/FindOpenSSL.cmake
@@ -19,20 +19,20 @@ FIND_LIBRARY(OPENSSL_LIBRARIES NAMES ssl ssleay32
${GNUWIN32_DIR}/lib
)
-if(OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES)
+if (OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES)
set(OPENSSL_FOUND TRUE)
-endif(OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES)
+endif (OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES)
-if(OPENSSL_FOUND)
- if(NOT OpenSSL_FIND_QUIETLY)
+if (OPENSSL_FOUND)
+ if (NOT OpenSSL_FIND_QUIETLY)
message(STATUS "Found OpenSSL: ${OPENSSL_LIBRARIES}")
- endif(NOT OpenSSL_FIND_QUIETLY)
-else(OPENSSL_FOUND)
- if(OpenSSL_FIND_REQUIRED)
+ endif (NOT OpenSSL_FIND_QUIETLY)
+else (OPENSSL_FOUND)
+ if (OpenSSL_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find OpenSSL")
- endif(OpenSSL_FIND_REQUIRED)
-endif(OPENSSL_FOUND)
+ endif (OpenSSL_FIND_REQUIRED)
+endif (OPENSSL_FOUND)
MARK_AS_ADVANCED(OPENSSL_INCLUDE_DIR OPENSSL_LIBRARIES)