author | Periklis Ntanasis <pntanasis@gmail.com> |
Thu, 08 Aug 2013 04:33:45 +0300 | |
branch | spacecampaign |
changeset 9488 | 2e2bb48566ae |
parent 8662 | bfcc09f2accc |
child 9419 | fa8324ed4702 |
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 |
# |
8662 | 4 |
# FFMPEG_FOUND - system has libavcodec, libavformat, libavutil |
5 |
# FFMPEG_INCLUDE_DIR - the libav include directories |
|
6 |
# FFMPEG_LIBRARIES - the libav libraries |
|
7 |
# |
|
8 |
# LIBAVCODEC_LIBRARY - the libavcodec library |
|
9 |
# LIBAVCODEC_INCLUDE_DIR - the libavcodec include directory |
|
10 |
# LIBAVFORMAT_LIBRARY - the libavformat library |
|
11 |
# LIBAVUTIL_LIBRARY - the 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) |
|
28 |
if (PKG_CONFIG_FOUND) |
|
8283 | 29 |
pkg_check_modules(_FFMPEG_AVCODEC libavcodec ${VERBOSITY}) |
30 |
pkg_check_modules(_FFMPEG_AVFORMAT libavformat ${VERBOSITY}) |
|
31 |
pkg_check_modules(_FFMPEG_AVUTIL libavutil ${VERBOSITY}) |
|
8662 | 32 |
endif (PKG_CONFIG_FOUND) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
33 |
|
8662 | 34 |
find_path(LIBAVCODEC_INCLUDE_DIR |
7534 | 35 |
NAMES libavcodec/avcodec.h |
8662 | 36 |
PATHS ${_AVCODEC_INCLUDE_DIRS} |
7816 | 37 |
/usr/include /usr/local/include #system level |
38 |
/opt/local/include #macports |
|
39 |
/sw/include #fink |
|
8662 | 40 |
PATH_SUFFIXES libav ffmpeg |
41 |
) |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
42 |
|
8662 | 43 |
#TODO: add other include paths |
44 |
||
45 |
find_library(LIBAVCODEC_LIBRARY |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
46 |
NAMES avcodec |
8662 | 47 |
PATHS ${_AVCODEC_LIBRARY_DIRS} |
7816 | 48 |
/usr/lib /usr/local/lib #system level |
49 |
/opt/local/lib #macports |
|
50 |
/sw/lib #fink |
|
8662 | 51 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
52 |
|
8662 | 53 |
find_library(LIBAVFORMAT_LIBRARY |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
54 |
NAMES avformat |
8662 | 55 |
PATHS ${_AVFORMAT_LIBRARY_DIRS} |
7816 | 56 |
/usr/lib /usr/local/lib #system level |
57 |
/opt/local/lib #macports |
|
58 |
/sw/lib #fink |
|
8662 | 59 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
60 |
|
8662 | 61 |
find_library(LIBAVUTIL_LIBRARY |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
62 |
NAMES avutil |
8662 | 63 |
PATHS ${_AVUTIL_LIBRARY_DIRS} |
7816 | 64 |
/usr/lib /usr/local/lib #system level |
65 |
/opt/local/lib #macports |
|
66 |
/sw/lib #fink |
|
8662 | 67 |
) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
68 |
|
8662 | 69 |
find_package_handle_standard_args(FFMPEG DEFAULT_MSG LIBAVCODEC_LIBRARY LIBAVCODEC_INCLUDE_DIR |
70 |
LIBAVFORMAT_LIBRARY |
|
71 |
LIBAVUTIL_LIBRARY |
|
72 |
) |
|
73 |
set(FFMPEG_INCLUDE_DIR ${LIBAVCODEC_INCLUDE_DIR} |
|
74 |
#TODO: add other include paths |
|
75 |
) |
|
76 |
set(FFMPEG_LIBRARIES ${LIBAVCODEC_LIBRARY} |
|
77 |
${LIBAVFORMAT_LIBRARY} |
|
78 |
${LIBAVUTIL_LIBRARY} |
|
79 |
) |
|
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
80 |
|
8662 | 81 |
mark_as_advanced(FFMPEG_INCLUDE_DIR FFMPEG_LIBRARIES LIBAVCODEC_LIBRARY LIBAVCODEC_INCLUDE_DIR LIBAVFORMAT_LIBRARY LIBAVUTIL_LIBRARY) |
7528
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
82 |
|
f8cf277dca36
FindFFMPEG.cmake (used only for frontend for now).
Stepan777 <stepik-777@mail.ru>
parents:
diff
changeset
|
83 |