aboutsummaryrefslogtreecommitdiff
path: root/modules/FindGIF.cmake
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2006-02-15 10:49:53 +0000
committerDavid Faure <faure@kde.org>2006-02-15 10:49:53 +0000
commiteaad615ee85800bedbf2088326399027c95d0740 (patch)
treea246899fbfde3fe0b1d000f2b93455cf20dcd144 /modules/FindGIF.cmake
parentffc69376dc591eae7b0ed2e974a599fb1b8b2aa8 (diff)
downloadextra-cmake-modules-eaad615ee85800bedbf2088326399027c95d0740.tar.gz
extra-cmake-modules-eaad615ee85800bedbf2088326399027c95d0740.tar.bz2
Hmm, "NOT" can't be lowercased. I tested before lowercasing that last one, of course...
svn path=/trunk/KDE/kdelibs/; revision=509625
Diffstat (limited to 'modules/FindGIF.cmake')
-rw-r--r--modules/FindGIF.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindGIF.cmake b/modules/FindGIF.cmake
index 6222b0d8..17097160 100644
--- a/modules/FindGIF.cmake
+++ b/modules/FindGIF.cmake
@@ -24,12 +24,12 @@ if(GIF_INCLUDE_DIR AND GIF_LIBRARIES)
endif(GIF_INCLUDE_DIR AND GIF_LIBRARIES)
if(GIF_FOUND)
- if(not GIF_FIND_QUIETLY)
+ if(NOT GIF_FIND_QUIETLY)
message(STATUS "Found GIF: ${GIF_LIBRARIES}")
- endif(not GIF_FIND_QUIETLY)
+ endif(NOT GIF_FIND_QUIETLY)
else(GIF_FOUND)
if(GIF_FIND_REQUIRED)
- message(FATAL_ERROR "Could not find GIF")
+ message(FATAL_ERROR "Could NOT find GIF")
endif(GIF_FIND_REQUIRED)
endif(GIF_FOUND)