2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindMPEG
|
|
|
|
# --------
|
|
|
|
#
|
|
|
|
# Find the native MPEG includes and library
|
|
|
|
#
|
2002-09-03 16:24:48 +04:00
|
|
|
# This module defines
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# MPEG_INCLUDE_DIR, where to find MPEG.h, etc.
|
|
|
|
# MPEG_LIBRARIES, the libraries required to use MPEG.
|
|
|
|
# MPEG_FOUND, If false, do not try to use MPEG.
|
|
|
|
#
|
2002-09-03 16:24:48 +04:00
|
|
|
# also defined, but not for general use are
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# MPEG_mpeg2_LIBRARY, where to find the MPEG library.
|
|
|
|
# MPEG_vo_LIBRARY, where to find the vo library.
|
2002-09-03 16:24:48 +04:00
|
|
|
|
2009-09-28 19:45:50 +04: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 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.)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(MPEG_INCLUDE_DIR mpeg2dec/include/video_out.h
|
2002-09-03 16:24:48 +04:00
|
|
|
/usr/local/livid
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(MPEG_mpeg2_LIBRARY mpeg2
|
2002-09-03 16:24:48 +04:00
|
|
|
/usr/local/livid/mpeg2dec/libmpeg2/.libs
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library( MPEG_vo_LIBRARY vo
|
2002-09-03 16:24:48 +04:00
|
|
|
/usr/local/livid/mpeg2dec/libvo/.libs
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set MPEG2_FOUND to TRUE if
|
2007-07-19 17:00:51 +04:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-16 13:26:25 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(MPEG DEFAULT_MSG MPEG_INCLUDE_DIR MPEG_mpeg2_LIBRARY MPEG_vo_LIBRARY)
|
2002-09-03 16:24:48 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(MPEG_FOUND)
|
|
|
|
set( MPEG_LIBRARIES ${MPEG_mpeg2_LIBRARY} ${MPEG_vo_LIBRARY} )
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2010-04-16 14:03:02 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(MPEG_INCLUDE_DIR MPEG_mpeg2_LIBRARY MPEG_vo_LIBRARY)
|