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/FindAGG.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/FindAGG.cmake')
-rw-r--r-- | modules/FindAGG.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindAGG.cmake b/modules/FindAGG.cmake index 18b39654..2e92ad31 100644 --- a/modules/FindAGG.cmake +++ b/modules/FindAGG.cmake @@ -29,18 +29,18 @@ FIND_LIBRARY(AGG_LIBRARIES NAMES agg /usr/local/lib ) -if(AGG_INCLUDE_DIR AND AGG_LIBRARIES) +if (AGG_INCLUDE_DIR AND AGG_LIBRARIES) set(AGG_FOUND TRUE) -endif(AGG_INCLUDE_DIR AND AGG_LIBRARIES) +endif (AGG_INCLUDE_DIR AND AGG_LIBRARIES) -if(AGG_FOUND) - if(NOT AGG_FIND_QUIETLY) +if (AGG_FOUND) + if (NOT AGG_FIND_QUIETLY) message(STATUS "Found AGG: ${AGG_LIBRARIES}") - endif(NOT AGG_FIND_QUIETLY) -else(AGG_FOUND) - if(AGG_FIND_REQUIRED) + endif (NOT AGG_FIND_QUIETLY) +else (AGG_FOUND) + if (AGG_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find AGG") - endif(AGG_FIND_REQUIRED) -endif(AGG_FOUND) + endif (AGG_FIND_REQUIRED) +endif (AGG_FOUND) MARK_AS_ADVANCED(AGG_INCLUDE_DIR AGG_LIBRARIES) |