author | Wuzzy <almikes@aol.com> |
Wed, 03 May 2017 22:08:49 +0200 | |
changeset 12394 | 8f294353f950 |
parent 9959 | 1a42d36f346a |
permissions | -rw-r--r-- |
8662 | 1 |
# Find ffmpeg/libav libraries (libavcodec, libavformat and libavutil) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
2 |
# Once done this will define |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
3 |
# |
9959 | 4 |
# LIBAV_FOUND - system has libavcodec, libavformat, libavutil |
5 |
# LIBAV_INCLUDE_DIR - libav include directories |
|
6 |
# LIBAV_LIBRARIES - libav libraries (libavcodec, libavformat, libavutil) |
|
8662 | 7 |
# |
9959 | 8 |
# LIBAVCODEC_LIBRARY - libavcodec library |
9 |
# LIBAVCODEC_INCLUDE_DIR - libavcodec include directory |
|
10 |
# LIBAVFORMAT_LIBRARY - libavformat library |
|
11 |
# LIBAVUTIL_LIBRARY - libavutil library |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
12 |
# |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
13 |
# Copyright (c) 2008 Andreas Schneider <mail@cynapses.org> |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
14 |
# Modified for other libraries by Lasse Kärkkäinen <tronic> |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
15 |
# Modified for Hedgewars by Stepik777 |
8662 | 16 |
# Copyright (c) 2013 Vittorio Giovara <vittorio.giovara@gmail.com> |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
17 |
# |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
18 |
# Redistribution and use is allowed according to the terms of the New |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
19 |
# BSD license. |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
20 |
# |
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
21 |
|
8662 | 22 |
include(FindPackageHandleStandardArgs) |
23 |
||
8285 | 24 |
|
8662 | 25 |
# use pkg-config to get the directories and then use these values |
26 |
# in the FIND_PATH() and FIND_LIBRARY() calls |
|
27 |
find_package(PkgConfig) |
|
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
28 |
if(PKG_CONFIG_FOUND) |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
29 |
if(NOT LIBAVCODEC_INCLUDE_DIR OR NOT LIBAVCODEC_LIBRARY) |
9959 | 30 |
pkg_check_modules(_LIBAV_AVCODEC libavcodec) |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
31 |
endif() |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
32 |
if(NOT LIBAVFORMAT_LIBRARY) |
9959 | 33 |
pkg_check_modules(_LIBAV_AVFORMAT libavformat) |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
34 |
endif() |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
35 |
if(NOT LIBAVUTIL_LIBRARY) |
9959 | 36 |
pkg_check_modules(_LIBAV_AVUTIL libavutil) |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
37 |
endif() |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
38 |
endif(PKG_CONFIG_FOUND) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
39 |
|
8662 | 40 |
find_path(LIBAVCODEC_INCLUDE_DIR |
7534 | 41 |
NAMES libavcodec/avcodec.h |
9959 | 42 |
PATHS ${_LIBAV_AVCODEC_INCLUDE_DIRS} #pkg-config |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
43 |
/usr/include /usr/local/include #system level |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
44 |
/opt/local/include /sw/include #macports & fink |
8662 | 45 |
PATH_SUFFIXES libav ffmpeg |
46 |
) |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
47 |
|
8662 | 48 |
#TODO: add other include paths |
49 |
||
50 |
find_library(LIBAVCODEC_LIBRARY |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
51 |
NAMES avcodec |
9959 | 52 |
PATHS ${_LIBAV_AVCODEC_LIBRARY_DIRS} #pkg-config |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
53 |
/usr/lib /usr/local/lib #system level |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
54 |
/opt/local/lib /sw/lib #macports & fink |
8662 | 55 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
56 |
|
8662 | 57 |
find_library(LIBAVFORMAT_LIBRARY |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
58 |
NAMES avformat |
9959 | 59 |
PATHS ${_LIBAV_AVFORMAT_LIBRARY_DIRS} #pkg-config |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
60 |
/usr/lib /usr/local/lib #system level |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
61 |
/opt/local/lib /sw/lib #macports & fink |
8662 | 62 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
63 |
|
8662 | 64 |
find_library(LIBAVUTIL_LIBRARY |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
65 |
NAMES avutil |
9959 | 66 |
PATHS ${_LIBAV_AVUTIL_LIBRARY_DIRS} #pkg-config |
9419
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
67 |
/usr/lib /usr/local/lib #system level |
fa8324ed4702
avoid duplicate pkg-config calls and make sure to use the pkg-config paths when found
koda
parents:
8662
diff
changeset
|
68 |
/opt/local/lib /sw/lib #macports & fink |
8662 | 69 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
70 |
|
9959 | 71 |
find_package_handle_standard_args(LIBAV DEFAULT_MSG LIBAVCODEC_LIBRARY |
72 |
LIBAVCODEC_INCLUDE_DIR |
|
73 |
LIBAVFORMAT_LIBRARY |
|
74 |
LIBAVUTIL_LIBRARY |
|
75 |
) |
|
76 |
set(LIBAV_INCLUDE_DIR ${LIBAVCODEC_INCLUDE_DIR} |
|
77 |
#TODO: add other include paths |
|
78 |
) |
|
79 |
set(LIBAV_LIBRARIES ${LIBAVCODEC_LIBRARY} |
|
80 |
${LIBAVFORMAT_LIBRARY} |
|
81 |
${LIBAVUTIL_LIBRARY} |
|
82 |
) |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
83 |
|
9959 | 84 |
mark_as_advanced(LIBAV_INCLUDE_DIR |
85 |
LIBAV_LIBRARIES |
|
86 |
LIBAVCODEC_LIBRARY |
|
87 |
LIBAVCODEC_INCLUDE_DIR |
|
88 |
LIBAVFORMAT_LIBRARY |
|
89 |
LIBAVUTIL_LIBRARY) |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
90 |