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/FindGNUWIN32.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/FindGNUWIN32.cmake')
-rw-r--r-- | modules/FindGNUWIN32.cmake | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/FindGNUWIN32.cmake b/modules/FindGNUWIN32.cmake index 11a11672..ebd27bba 100644 --- a/modules/FindGNUWIN32.cmake +++ b/modules/FindGNUWIN32.cmake @@ -9,24 +9,24 @@ FIND_FILE(GNUWIN32_DIR GNUWIN32 "C:/" ) -if(GNUWIN32_DIRECTORY) +if (GNUWIN32_DIRECTORY) set(GNUWIN32_INCLUDE_DIR ${GNUWIN32_DIR}/include) set(GNUWIN32_LIBRARY_DIR ${GNUWIN32_DIR}/lib) set(GNUWIN32_BINARY_DIR ${GNUWIN32_DIR}/bin) set(GNUWIN32_FOUND TRUE) -else(GNUWIN32_DIRECTORY) +else (GNUWIN32_DIRECTORY) set(GNUWIN32_FOUND) -endif(GNUWIN32_DIRECTORY) +endif (GNUWIN32_DIRECTORY) -if(GNUWIN32_FOUND) - if(NOT GNUWIN32_FIND_QUIETLY) +if (GNUWIN32_FOUND) + if (NOT GNUWIN32_FIND_QUIETLY) message(STATUS "Found GNUWIN32: ${GNUWIN32_DIR}") - endif(NOT GNUWIN32_FIND_QUIETLY) -else(GNUWIN32_FOUND) - if(GNUWIN32_FIND_REQUIRED) + endif (NOT GNUWIN32_FIND_QUIETLY) +else (GNUWIN32_FOUND) + if (GNUWIN32_FIND_REQUIRED) message(SEND_ERROR "Could NOT find GNUWIN32") - endif(GNUWIN32_FIND_REQUIRED) -endif(GNUWIN32_FOUND) + endif (GNUWIN32_FIND_REQUIRED) +endif (GNUWIN32_FOUND) endif (WIN32) |