CMake/Modules/FindQuickTime.cmake
Kitware Robot de273b2e11 LICENSE: Replace references to Copyright.txt with LICENSE.rst
```
git grep -lz 'Copyright.txt or https://cmake.org/licensing ' |
  while IFS= read -r -d $'\0' f ; do
    sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / {
              s/Copyright.txt/LICENSE.rst/
            }' "$f" ; done
```
2025-03-03 09:56:07 -05:00

37 lines
974 B
CMake

# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
FindQuickTime
-------------
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::
./configure --prefix=$QUICKTIME_DIR
#]=======================================================================]
find_path(QUICKTIME_INCLUDE_DIR QuickTime/QuickTime.h QuickTime.h
HINTS
ENV QUICKTIME_DIR
PATH_SUFFIXES
include
)
find_library(QUICKTIME_LIBRARY QuickTime
HINTS
ENV QUICKTIME_DIR
PATH_SUFFIXES
lib
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(QuickTime DEFAULT_MSG QUICKTIME_LIBRARY QUICKTIME_INCLUDE_DIR)