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/FindGIF.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/FindGIF.cmake')
-rw-r--r-- | modules/FindGIF.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindGIF.cmake b/modules/FindGIF.cmake index b7bb1b8b..f8b40d48 100644 --- a/modules/FindGIF.cmake +++ b/modules/FindGIF.cmake @@ -22,18 +22,18 @@ FIND_LIBRARY(GIF_LIBRARIES NAMES gif libgif ungif libungif giflib ${GNUWIN32_DIR}/lib ) -if(GIF_INCLUDE_DIR AND GIF_LIBRARIES) +if (GIF_INCLUDE_DIR AND GIF_LIBRARIES) set(GIF_FOUND TRUE) -endif(GIF_INCLUDE_DIR AND GIF_LIBRARIES) +endif (GIF_INCLUDE_DIR AND GIF_LIBRARIES) -if(GIF_FOUND) - if(NOT GIF_FIND_QUIETLY) +if (GIF_FOUND) + if (NOT GIF_FIND_QUIETLY) message(STATUS "Found GIF: ${GIF_LIBRARIES}") - endif(NOT GIF_FIND_QUIETLY) -else(GIF_FOUND) - if(GIF_FIND_REQUIRED) + endif (NOT GIF_FIND_QUIETLY) +else (GIF_FOUND) + if (GIF_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find GIF") - endif(GIF_FIND_REQUIRED) -endif(GIF_FOUND) + endif (GIF_FIND_REQUIRED) +endif (GIF_FOUND) MARK_AS_ADVANCED(GIF_INCLUDE_DIR GIF_LIBRARIES) |