mirror of
https://github.com/reactos/CMake.git
synced 2024-12-17 16:46:37 +00:00
e2ec3b671b
- The find_* commands now provide a HINTS option. - The option specifies paths to be preferred over the system paths. - Many Find* modules were using two find calls with NO_DEFAULT_PATH to approximate the behavior, but that blocked users from overriding things with CMAKE_PREFIX_PATH. - This commit uses the HINTS feature to get desired behavior in only one find command call.
37 lines
926 B
CMake
37 lines
926 B
CMake
# Locate QuickTime
|
|
# This module defines
|
|
# QUICKTIME_LIBRARY
|
|
# QUICKTIME_FOUND, if false, do not try to link to gdal
|
|
# QUICKTIME_INCLUDE_DIR, where to find the headers
|
|
#
|
|
# $QUICKTIME_DIR is an environment variable that would
|
|
# correspond to the ./configure --prefix=$QUICKTIME_DIR
|
|
#
|
|
# Created by Eric Wing.
|
|
|
|
# QuickTime on OS X looks different than QuickTime for Windows,
|
|
# so I am going to case the two.
|
|
|
|
IF(APPLE)
|
|
FIND_PATH(QUICKTIME_INCLUDE_DIR QuickTime/QuickTime.h)
|
|
FIND_LIBRARY(QUICKTIME_LIBRARY QuickTime)
|
|
ELSE(APPLE)
|
|
FIND_PATH(QUICKTIME_INCLUDE_DIR QuickTime.h
|
|
HINTS
|
|
$ENV{QUICKTIME_DIR}/include
|
|
$ENV{QUICKTIME_DIR}
|
|
)
|
|
FIND_LIBRARY(QUICKTIME_LIBRARY QuickTime
|
|
HINTS
|
|
$ENV{QUICKTIME_DIR}/lib
|
|
$ENV{QUICKTIME_DIR}
|
|
)
|
|
ENDIF(APPLE)
|
|
|
|
SET(QUICKTIME_FOUND "NO")
|
|
IF(QUICKTIME_LIBRARY AND QUICKTIME_INCLUDE_DIR)
|
|
SET(QUICKTIME_FOUND "YES")
|
|
ENDIF(QUICKTIME_LIBRARY AND QUICKTIME_INCLUDE_DIR)
|
|
|
|
|