1############################################################################
2# FindSpeex.txt
3# Copyright (C) 2014  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 speex include file and library
24#
25#  SPEEX_FOUND - system has speex
26#  SPEEX_INCLUDE_DIRS - the speex include directory
27#  SPEEX_LIBRARIES - The libraries needed to use speex
28
29find_path(SPEEX_INCLUDE_DIRS
30	NAMES speex/speex.h
31	PATH_SUFFIXES include
32)
33if(SPEEX_INCLUDE_DIRS)
34	set(HAVE_SPEEX_SPEEX_H 1)
35endif()
36
37find_library(SPEEX_LIBRARIES
38	NAMES speex
39)
40
41include(FindPackageHandleStandardArgs)
42find_package_handle_standard_args(Speex
43	DEFAULT_MSG
44	SPEEX_INCLUDE_DIRS SPEEX_LIBRARIES HAVE_SPEEX_SPEEX_H
45)
46
47mark_as_advanced(SPEEX_INCLUDE_DIRS SPEEX_LIBRARIES HAVE_SPEEX_SPEEX_H)
48