diff options
author | Allen Winter <winter@kde.org> | 2006-03-20 21:05:37 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2006-03-20 21:05:37 +0000 |
commit | 191846e3e21c697c28bd5c8a166edeb4072161e3 (patch) | |
tree | dd41ca62b221ce0b3936c1dc9d518a01e6359bc6 /modules/FindSasl2.cmake | |
parent | 659abe0d63dd8d5a979d6584fdf9dfb7b9b6c6ff (diff) | |
download | extra-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/FindSasl2.cmake')
-rw-r--r-- | modules/FindSasl2.cmake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/FindSasl2.cmake b/modules/FindSasl2.cmake index 4684735c..4d941806 100644 --- a/modules/FindSasl2.cmake +++ b/modules/FindSasl2.cmake @@ -17,16 +17,16 @@ FIND_LIBRARY(SASL2_LIBRARIES NAMES sasl2 ) -if(SASL2_INCLUDE_DIR AND SASL2_LIBRARIES) +if (SASL2_INCLUDE_DIR AND SASL2_LIBRARIES) set(SASL2_FOUND TRUE) -endif(SASL2_INCLUDE_DIR AND SASL2_LIBRARIES) +endif (SASL2_INCLUDE_DIR AND SASL2_LIBRARIES) -if(SASL2_FOUND) - if(NOT SASL2_FIND_QUIETLY) +if (SASL2_FOUND) + if (NOT SASL2_FIND_QUIETLY) message(STATUS "Found sasl2: ${SASL2_LIBRARIES}") - endif(NOT SASL2_FIND_QUIETLY) -endif(SASL2_FOUND) + endif (NOT SASL2_FIND_QUIETLY) +endif (SASL2_FOUND) MARK_AS_ADVANCED(SASL2_INCLUDE_DIR SASL2_LIBRARIES) |