1############################################################################
2# FindTheora.txt
3# Copyright (C) 2016  Belledonne Communications, Grenoble France
4#
5############################################################################
6#
7# This program is free software; you can redistribute it and/or
8# modify it under the terms of the GNU General Public License
9# as published by the Free Software Foundation; either version 2
10# of the License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20#
21############################################################################
22#
23# - Find the theora include file and library
24#
25#  THEORA_FOUND - system has theora
26#  THEORA_INCLUDE_DIRS - the theora include directory
27#  THEORA_LIBRARIES - The libraries needed to use theora
28
29find_path(THEORA_INCLUDE_DIRS
30	NAMES theora/theora.h
31	PATH_SUFFIXES include
32)
33if(THEORA_INCLUDE_DIRS)
34	set(HAVE_THEORA_THEORA_H 1)
35endif()
36
37find_library(THEORA_LIBRARIES
38	NAMES theora
39	PATH_SUFFIXES bin lib
40)
41
42include(FindPackageHandleStandardArgs)
43find_package_handle_standard_args(Theora
44	DEFAULT_MSG
45	THEORA_INCLUDE_DIRS THEORA_LIBRARIES HAVE_THEORA_THEORA_H
46)
47
48mark_as_advanced(THEORA_INCLUDE_DIRS THEORA_LIBRARIES HAVE_THEORA_THEORA_H)
49