2005-12-14 18:51:08 +00:00
|
|
|
# - Locate AVIFILE library and include paths
|
2012-08-13 17:42:58 +00:00
|
|
|
# AVIFILE (http://avifile.sourceforge.net/)is a set of libraries for
|
2005-12-15 15:41:19 +00:00
|
|
|
# i386 machines
|
2002-09-02 11:03:43 +00:00
|
|
|
# to use various AVI codecs. Support is limited beyond Linux. Windows
|
|
|
|
# provides native AVI support, and so doesn't need this library.
|
|
|
|
# This module defines
|
2005-12-14 18:51:08 +00:00
|
|
|
# AVIFILE_INCLUDE_DIR, where to find avifile.h , etc.
|
2005-12-15 15:41:19 +00:00
|
|
|
# AVIFILE_LIBRARIES, the libraries to link against
|
|
|
|
# AVIFILE_DEFINITIONS, definitions to use when compiling
|
|
|
|
# AVIFILE_FOUND, If false, don't try to use AVIFILE
|
2002-09-02 11:03:43 +00:00
|
|
|
|
2009-09-28 15:45:50 +00:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2002-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
|
|
|
if (UNIX)
|
2002-09-02 11:03:43 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
find_path(AVIFILE_INCLUDE_DIR avifile.h
|
2002-09-02 11:03:43 +00:00
|
|
|
/usr/local/avifile/include
|
|
|
|
/usr/local/include/avifile
|
|
|
|
)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
find_library(AVIFILE_AVIPLAY_LIBRARY aviplay
|
2002-09-02 11:03:43 +00:00
|
|
|
/usr/local/avifile/lib
|
|
|
|
)
|
|
|
|
|
2012-08-13 17:50:14 +00:00
|
|
|
endif ()
|
2002-09-02 11:03:43 +00:00
|
|
|
|
2010-04-17 07:44:02 +00:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set AVIFILE_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2012-08-13 17:47:32 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-17 07:44:02 +00:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(AVIFile DEFAULT_MSG AVIFILE_INCLUDE_DIR AVIFILE_AVIPLAY_LIBRARY)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if (AVIFILE_FOUND)
|
|
|
|
set(AVIFILE_LIBRARIES ${AVIFILE_AVIPLAY_LIBRARY})
|
|
|
|
set(AVIFILE_DEFINITIONS "")
|
|
|
|
endif()
|
2002-09-02 11:03:43 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
mark_as_advanced(AVIFILE_INCLUDE_DIR AVIFILE_AVIPLAY_LIBRARY)
|