aboutsummaryrefslogtreecommitdiff
path: root/cmake/modules/FindSpeex.cmake
diff options
context:
space:
mode:
authorNiels Ole Salscheider <niels_ole@salscheider-online.de>2019-05-17 14:30:02 -0700
committerLNJ <lnj@kaidan.im>2020-03-16 22:22:59 +0100
commit90036fc2cf5918c028f043edff7f5d38d1efb4cc (patch)
tree4818d8c4e6ec3778e2dd8a2e356faf1b9e062902 /cmake/modules/FindSpeex.cmake
parentc67ccc6d939b8f1efd118f92baea997fe1b7f1a6 (diff)
downloadqxmpp-90036fc2cf5918c028f043edff7f5d38d1efb4cc.tar.gz
Port QXmppCallManager to use GStreamer
Diffstat (limited to 'cmake/modules/FindSpeex.cmake')
-rw-r--r--cmake/modules/FindSpeex.cmake25
1 files changed, 0 insertions, 25 deletions
diff --git a/cmake/modules/FindSpeex.cmake b/cmake/modules/FindSpeex.cmake
deleted file mode 100644
index 3929b2ec..00000000
--- a/cmake/modules/FindSpeex.cmake
+++ /dev/null
@@ -1,25 +0,0 @@
-# Try to find Speex
-# Once done this will define
-# Speex_FOUND - System has Speex
-# Speex_INCLUDE_DIRS - The Speex include directories
-# Speex_LIBRARIES - The libraries needed to use Speex
-
-find_package(PkgConfig)
-pkg_check_modules(PC_Speex QUIET libspeex)
-
-find_path(Speex_INCLUDE_DIR speex/speex.h
- HINTS ${PC_Speex_INCLUDEDIR} ${PC_Speex_INCLUDE_DIRS}
-)
-
-find_library(Speex_LIBRARY NAMES speex
- HINTS ${PC_Speex_LIBDIR} ${PC_Speex_LIBRARY_DIRS}
-)
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Speex DEFAULT_MSG Speex_LIBRARY Speex_INCLUDE_DIR)
-
-mark_as_advanced(Speex_INCLUDE_DIR Speex_LIBRARY)
-
-set(Speex_LIBRARIES ${Speex_LIBRARY})
-set(Speex_INCLUDE_DIRS ${Speex_INCLUDE_DIR})
-