mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
55 lines
1.5 KiB
CMake
55 lines
1.5 KiB
CMake
# Try to find the FFmpeg library, once done this will define:
|
|
#
|
|
# FFMPEG_FOUND - system has FFmpeg
|
|
# FFMPEG_INCLUDES - the FFmpeg include directory
|
|
# FFMPEG_LIBRARIES - the libraries needed to use FFmpeg
|
|
#
|
|
# Copyright (c) 2022 Ivailo Monev <xakepa10@gmail.com>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
find_path(LIBAVCODEC_INCLUDES
|
|
NAMES libavcodec/codec_desc.h
|
|
HINTS $ENV{FFMPEGDIR}/include
|
|
)
|
|
|
|
find_library(LIBAVCODEC_LIBRARY
|
|
NAMES avcodec
|
|
HINTS $ENV{FFMPEGDIR}/lib
|
|
)
|
|
|
|
find_path(LIBAVFORMAT_INCLUDES
|
|
NAMES libavformat/avformat.h
|
|
HINTS $ENV{FFMPEGDIR}/include
|
|
)
|
|
|
|
find_library(LIBAVFORMAT_LIBRARY
|
|
NAMES avformat
|
|
HINTS $ENV{FFMPEGDIR}/lib
|
|
)
|
|
|
|
find_path(LIBAVUTIL_INCLUDES
|
|
NAMES libavutil/dict.h
|
|
HINTS $ENV{FFMPEGDIR}/include
|
|
)
|
|
|
|
find_library(LIBAVUTIL_LIBRARY
|
|
NAMES avformat
|
|
HINTS $ENV{FFMPEGDIR}/lib
|
|
)
|
|
|
|
if (LIBAVCODEC_INCLUDES AND LIBAVFORMAT_INCLUDES AND LIBAVUTIL_INCLUDES)
|
|
set(FFMPEG_INCLUDES ${LIBAVCODEC_INCLUDES} ${LIBAVFORMAT_INCLUDES} ${LIBAVUTIL_INCLUDES})
|
|
endif()
|
|
|
|
if (LIBAVCODEC_LIBRARY AND LIBAVFORMAT_LIBRARY AND LIBAVUTIL_LIBRARY)
|
|
set(FFMPEG_LIBRARIES ${LIBAVCODEC_LIBRARY} ${LIBAVFORMAT_LIBRARY} ${LIBAVUTIL_LIBRARY})
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(FFmpeg
|
|
REQUIRED_VARS FFMPEG_LIBRARIES FFMPEG_INCLUDES
|
|
)
|
|
|
|
mark_as_advanced(FFMPEG_INCLUDES FFMPEG_LIBRARIES)
|