diff options
Diffstat (limited to 'modules/FindGIF.cmake')
-rw-r--r-- | modules/FindGIF.cmake | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/FindGIF.cmake b/modules/FindGIF.cmake index b1dc4a57..94e75388 100644 --- a/modules/FindGIF.cmake +++ b/modules/FindGIF.cmake @@ -3,7 +3,7 @@ # # GIF_FOUND - system has GIF # GIF_INCLUDE_DIR - the GIF include directory -# GIF_LIBRARY - Link these to use OpenGL and GLU +# GIF_LIBRARIES - Libraries needed to use GIF # GIF_DEFINITIONS - Compiler switches required for using GIF # @@ -13,19 +13,19 @@ FIND_PATH(GIF_INCLUDE_DIR gif_lib.h /usr/local/include ) -FIND_LIBRARY(GIF_LIBRARY NAMES gif libgif ungif libungif giflib +FIND_LIBRARY(GIF_LIBRARIES NAMES gif libgif ungif libungif giflib PATHS /usr/lib /usr/local/lib ) -IF(GIF_INCLUDE_DIR AND GIF_LIBRARY) +IF(GIF_INCLUDE_DIR AND GIF_LIBRARIES) SET(GIF_FOUND TRUE) -ENDIF(GIF_INCLUDE_DIR AND GIF_LIBRARY) +ENDIF(GIF_INCLUDE_DIR AND GIF_LIBRARIES) IF(GIF_FOUND) IF(NOT GIF_FIND_QUIETLY) - MESSAGE(STATUS "Found GIF: ${GIF_LIBRARY}") + MESSAGE(STATUS "Found GIF: ${GIF_LIBRARIES}") ENDIF(NOT GIF_FIND_QUIETLY) ELSE(GIF_FOUND) IF(GIF_FIND_REQUIRED) @@ -33,3 +33,4 @@ ELSE(GIF_FOUND) ENDIF(GIF_FIND_REQUIRED) ENDIF(GIF_FOUND) +MARK_AS_ADVANCED(GIF_INCLUDE_DIR GIF_LIBRARIES) |