2013-10-15 15:17:36 +00:00
|
|
|
#.rst:
|
|
|
|
# FindJPEG
|
|
|
|
# --------
|
|
|
|
#
|
|
|
|
# Find JPEG
|
|
|
|
#
|
|
|
|
# Find the native JPEG includes and library This module defines
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# JPEG_INCLUDE_DIR, where to find jpeglib.h, etc.
|
|
|
|
# JPEG_LIBRARIES, the libraries needed to use JPEG.
|
|
|
|
# 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
|
2013-10-15 15:17:36 +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.
|
|
|
|
#=============================================================================
|
2010-08-07 00:48:47 +00:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 15:45:50 +00:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
find_path(JPEG_INCLUDE_DIR jpeglib.h)
|
2001-05-04 15:35:47 +00:00
|
|
|
|
2014-06-26 19:12:29 +00:00
|
|
|
set(JPEG_NAMES ${JPEG_NAMES} jpeg libjpeg)
|
2012-08-13 17:47:32 +00:00
|
|
|
find_library(JPEG_LIBRARY NAMES ${JPEG_NAMES} )
|
2006-05-11 22:32:40 +00:00
|
|
|
|
2012-08-13 17:42:58 +00:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set JPEG_FOUND to TRUE if
|
2007-07-18 17:56:45 +00:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 17:47:32 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
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
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(JPEG_FOUND)
|
|
|
|
set(JPEG_LIBRARIES ${JPEG_LIBRARY})
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2002-09-02 16:05:40 +00:00
|
|
|
|
|
|
|
# Deprecated declarations.
|
2012-08-13 17:47:32 +00:00
|
|
|
set (NATIVE_JPEG_INCLUDE_PATH ${JPEG_INCLUDE_DIR} )
|
|
|
|
if(JPEG_LIBRARY)
|
|
|
|
get_filename_component (NATIVE_JPEG_LIB_PATH ${JPEG_LIBRARY} PATH)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2005-09-08 15:38:55 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
mark_as_advanced(JPEG_LIBRARY JPEG_INCLUDE_DIR )
|