2005-12-14 18:51:08 +00:00
|
|
|
# - Find JPEG
|
2001-05-04 15:35:47 +00:00
|
|
|
# Find the native JPEG includes and library
|
2002-09-02 16:05:40 +00:00
|
|
|
# This module defines
|
2005-12-14 18:51:08 +00:00
|
|
|
# JPEG_INCLUDE_DIR, where to find jpeglib.h, etc.
|
2005-12-15 15:41:19 +00:00
|
|
|
# JPEG_LIBRARIES, the libraries needed to use JPEG.
|
2005-12-14 18:51:08 +00:00
|
|
|
# JPEG_FOUND, If false, do not try to use JPEG.
|
2002-09-02 16:05:40 +00:00
|
|
|
# also defined, but not for general use are
|
2005-12-14 18:51:08 +00:00
|
|
|
# JPEG_LIBRARY, where to find the JPEG library.
|
2001-05-04 15:35:47 +00:00
|
|
|
|
2009-09-28 15:45:50 +00:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2001-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2007-07-18 17:56:45 +00:00
|
|
|
FIND_PATH(JPEG_INCLUDE_DIR jpeglib.h)
|
2001-05-04 15:35:47 +00:00
|
|
|
|
2006-02-09 17:04:25 +00:00
|
|
|
SET(JPEG_NAMES ${JPEG_NAMES} jpeg)
|
2007-07-18 17:56:45 +00:00
|
|
|
FIND_LIBRARY(JPEG_LIBRARY NAMES ${JPEG_NAMES} )
|
2006-05-11 22:32:40 +00:00
|
|
|
|
2007-07-18 17:56:45 +00:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set JPEG_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
|
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
2007-07-23 13:49:52 +00:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(JPEG DEFAULT_MSG JPEG_LIBRARY JPEG_INCLUDE_DIR)
|
2006-05-11 22:32:40 +00:00
|
|
|
|
2007-07-18 17:56:45 +00:00
|
|
|
IF(JPEG_FOUND)
|
|
|
|
SET(JPEG_LIBRARIES ${JPEG_LIBRARY})
|
|
|
|
ENDIF(JPEG_FOUND)
|
2002-09-02 16:05:40 +00:00
|
|
|
|
|
|
|
# Deprecated declarations.
|
|
|
|
SET (NATIVE_JPEG_INCLUDE_PATH ${JPEG_INCLUDE_DIR} )
|
2008-07-29 20:41:29 +00:00
|
|
|
IF(JPEG_LIBRARY)
|
|
|
|
GET_FILENAME_COMPONENT (NATIVE_JPEG_LIB_PATH ${JPEG_LIBRARY} PATH)
|
|
|
|
ENDIF(JPEG_LIBRARY)
|
2005-09-08 15:38:55 +00:00
|
|
|
|
2007-07-18 17:56:45 +00:00
|
|
|
MARK_AS_ADVANCED(JPEG_LIBRARY JPEG_INCLUDE_DIR )
|