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/FindFAM.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/FindFAM.cmake')
-rw-r--r-- | modules/FindFAM.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindFAM.cmake b/modules/FindFAM.cmake index 225a2e29..164841c8 100644 --- a/modules/FindFAM.cmake +++ b/modules/FindFAM.cmake @@ -17,20 +17,20 @@ FIND_LIBRARY(FAM_LIBRARIES NAMES fam ) -if(FAM_INCLUDE_DIR AND FAM_LIBRARIES) +if (FAM_INCLUDE_DIR AND FAM_LIBRARIES) set(FAM_FOUND TRUE) -endif(FAM_INCLUDE_DIR AND FAM_LIBRARIES) +endif (FAM_INCLUDE_DIR AND FAM_LIBRARIES) -if(FAM_FOUND) - if(NOT FAM_FIND_QUIETLY) +if (FAM_FOUND) + if (NOT FAM_FIND_QUIETLY) message(STATUS "Found fam: ${FAM_LIBRARIES}") - endif(NOT FAM_FIND_QUIETLY) -else(FAM_FOUND) - if(FAM_FIND_REQUIRED) + endif (NOT FAM_FIND_QUIETLY) +else (FAM_FOUND) + if (FAM_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find fam library") - endif(FAM_FIND_REQUIRED) -endif(FAM_FOUND) + endif (FAM_FIND_REQUIRED) +endif (FAM_FOUND) MARK_AS_ADVANCED(FAM_INCLUDE_DIR FAM_LIBRARIES) |