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/FindLibXslt.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/FindLibXslt.cmake')
-rw-r--r-- | modules/FindLibXslt.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindLibXslt.cmake b/modules/FindLibXslt.cmake index 4abb6f9f..be9cd16f 100644 --- a/modules/FindLibXslt.cmake +++ b/modules/FindLibXslt.cmake @@ -33,19 +33,19 @@ FIND_LIBRARY(LIBXSLT_LIBRARIES NAMES xslt libxslt ${GNUWIN32_DIR}/lib ) -if(LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) +if (LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) set(LIBXSLT_FOUND TRUE) -endif(LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) +endif (LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) -if(LIBXSLT_FOUND) - if(NOT LibXslt_FIND_QUIETLY) +if (LIBXSLT_FOUND) + if (NOT LibXslt_FIND_QUIETLY) message(STATUS "Found LibXslt: ${LIBXSLT_LIBRARIES}") - endif(NOT LibXslt_FIND_QUIETLY) -else(LIBXSLT_FOUND) - if(LibXslt_FIND_REQUIRED) + endif (NOT LibXslt_FIND_QUIETLY) +else (LIBXSLT_FOUND) + if (LibXslt_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find LibXslt") - endif(LibXslt_FIND_REQUIRED) -endif(LIBXSLT_FOUND) + endif (LibXslt_FIND_REQUIRED) +endif (LIBXSLT_FOUND) MARK_AS_ADVANCED(LIBXSLT_INCLUDE_DIR LIBXSLT_LIBRARIES) |