diff options
| author | Niels Ole Salscheider <niels_ole@salscheider-online.de> | 2019-05-17 14:30:02 -0700 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2020-03-16 22:22:59 +0100 |
| commit | 90036fc2cf5918c028f043edff7f5d38d1efb4cc (patch) | |
| tree | 4818d8c4e6ec3778e2dd8a2e356faf1b9e062902 /cmake/modules/FindTheora.cmake | |
| parent | c67ccc6d939b8f1efd118f92baea997fe1b7f1a6 (diff) | |
| download | qxmpp-90036fc2cf5918c028f043edff7f5d38d1efb4cc.tar.gz | |
Port QXmppCallManager to use GStreamer
Diffstat (limited to 'cmake/modules/FindTheora.cmake')
| -rw-r--r-- | cmake/modules/FindTheora.cmake | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/cmake/modules/FindTheora.cmake b/cmake/modules/FindTheora.cmake deleted file mode 100644 index 24462794..00000000 --- a/cmake/modules/FindTheora.cmake +++ /dev/null @@ -1,33 +0,0 @@ -# Try to find Theora -# Once done this will define -# Theora_FOUND - System has Theora -# Theora_INCLUDE_DIRS - The Theora include directories -# Theora_LIBRARIES - The libraries needed to use Theora - -find_package(PkgConfig) -pkg_check_modules(PC_Theora QUIET libtheora) - -find_path(Theora_INCLUDE_DIR theora/theora.h - HINTS ${PC_Theora_INCLUDEDIR} ${PC_Theora_INCLUDE_DIRS} -) - -find_library(Theora_LIBRARY NAMES theora - HINTS ${PC_Theora_LIBDIR} ${PC_Theora_LIBRARY_DIRS} -) - -find_library(Theora_enc_LIBRARY NAMES theoraenc - HINTS ${PC_Theora_LIBDIR} ${PC_Theora_LIBRARY_DIRS} -) - -find_library(Theora_dec_LIBRARY NAMES theoradec - HINTS ${PC_Theora_LIBDIR} ${PC_Theora_LIBRARY_DIRS} -) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Theora DEFAULT_MSG Theora_LIBRARY Theora_enc_LIBRARY Theora_dec_LIBRARY Theora_INCLUDE_DIR) - -mark_as_advanced(Theora_INCLUDE_DIR Theora_LIBRARY Theora_enc_LIBRARY Theora_dec_LIBRARY) - -set(Theora_LIBRARIES ${Theora_LIBRARY} ${Theora_enc_LIBRARY} ${Theora_dec_LIBRARY}) -set(Theora_INCLUDE_DIRS ${Theora_INCLUDE_DIR}) - |
