2005-12-14 13:51:08 -05:00
|
|
|
# - Find JPEG
|
2001-05-04 11:35:47 -04:00
|
|
|
# Find the native JPEG includes and library
|
2002-09-02 12:05:40 -04:00
|
|
|
# This module defines
|
2005-12-14 13:51:08 -05:00
|
|
|
# JPEG_INCLUDE_DIR, where to find jpeglib.h, etc.
|
2005-12-15 10:41:19 -05:00
|
|
|
# JPEG_LIBRARIES, the libraries needed to use JPEG.
|
2005-12-14 13:51:08 -05:00
|
|
|
# JPEG_FOUND, If false, do not try to use JPEG.
|
2002-09-02 12:05:40 -04:00
|
|
|
# also defined, but not for general use are
|
2005-12-14 13:51:08 -05:00
|
|
|
# JPEG_LIBRARY, where to find the JPEG library.
|
2001-05-04 11:35:47 -04:00
|
|
|
|
2009-09-28 11:45:50 -04: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.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:45:50 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2007-07-18 13:56:45 -04:00
|
|
|
FIND_PATH(JPEG_INCLUDE_DIR jpeglib.h)
|
2001-05-04 11:35:47 -04:00
|
|
|
|
2006-02-09 12:04:25 -05:00
|
|
|
SET(JPEG_NAMES ${JPEG_NAMES} jpeg)
|
2007-07-18 13:56:45 -04:00
|
|
|
FIND_LIBRARY(JPEG_LIBRARY NAMES ${JPEG_NAMES} )
|
2006-05-11 18:32:40 -04:00
|
|
|
|
2007-07-18 13:56:45 -04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set JPEG_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2010-09-28 22:30:31 +02:00
|
|
|
INCLUDE("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake")
|
2007-07-23 09:49:52 -04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(JPEG DEFAULT_MSG JPEG_LIBRARY JPEG_INCLUDE_DIR)
|
2006-05-11 18:32:40 -04:00
|
|
|
|
2007-07-18 13:56:45 -04:00
|
|
|
IF(JPEG_FOUND)
|
|
|
|
SET(JPEG_LIBRARIES ${JPEG_LIBRARY})
|
|
|
|
ENDIF(JPEG_FOUND)
|
2002-09-02 12:05:40 -04:00
|
|
|
|
|
|
|
# Deprecated declarations.
|
|
|
|
SET (NATIVE_JPEG_INCLUDE_PATH ${JPEG_INCLUDE_DIR} )
|
2008-07-29 16:41:29 -04:00
|
|
|
IF(JPEG_LIBRARY)
|
|
|
|
GET_FILENAME_COMPONENT (NATIVE_JPEG_LIB_PATH ${JPEG_LIBRARY} PATH)
|
|
|
|
ENDIF(JPEG_LIBRARY)
|
2005-09-08 11:38:55 -04:00
|
|
|
|
2007-07-18 13:56:45 -04:00
|
|
|
MARK_AS_ADVANCED(JPEG_LIBRARY JPEG_INCLUDE_DIR )
|