2007-12-21 04:59:44 +03:00
|
|
|
# Locate QuickTime
|
|
|
|
# This module defines
|
|
|
|
# QUICKTIME_LIBRARY
|
2012-08-13 21:42:58 +04:00
|
|
|
# QUICKTIME_FOUND, if false, do not try to link to gdal
|
2007-12-21 04:59:44 +03:00
|
|
|
# QUICKTIME_INCLUDE_DIR, where to find the headers
|
|
|
|
#
|
|
|
|
# $QUICKTIME_DIR is an environment variable that would
|
|
|
|
# correspond to the ./configure --prefix=$QUICKTIME_DIR
|
|
|
|
#
|
2012-08-13 21:42:58 +04:00
|
|
|
# Created by Eric Wing.
|
2007-12-21 04:59:44 +03:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2007-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 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2007-12-21 04:59:44 +03:00
|
|
|
# QuickTime on OS X looks different than QuickTime for Windows,
|
|
|
|
# so I am going to case the two.
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(APPLE)
|
|
|
|
find_path(QUICKTIME_INCLUDE_DIR QuickTime/QuickTime.h)
|
|
|
|
find_library(QUICKTIME_LIBRARY QuickTime)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(QUICKTIME_INCLUDE_DIR QuickTime.h
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2007-12-21 04:59:44 +03:00
|
|
|
$ENV{QUICKTIME_DIR}/include
|
|
|
|
$ENV{QUICKTIME_DIR}
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(QUICKTIME_LIBRARY QuickTime
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2007-12-21 04:59:44 +03:00
|
|
|
$ENV{QUICKTIME_DIR}/lib
|
|
|
|
$ENV{QUICKTIME_DIR}
|
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-12-21 04:59:44 +03:00
|
|
|
|
2010-04-17 10:32:19 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set QUICKTIME_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-17 10:32:19 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(QuickTime DEFAULT_MSG QUICKTIME_LIBRARY QUICKTIME_INCLUDE_DIR)
|