New upstream version 0.15.4+dfsg1
This commit is contained in:
parent
55d5047af0
commit
67704ac59c
359 changed files with 8423 additions and 1050 deletions
72
cmake/Modules/FindLibVLC.cmake
Normal file
72
cmake/Modules/FindLibVLC.cmake
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
# Once done these will be defined:
|
||||
#
|
||||
# LIBVLC_FOUND
|
||||
# LIBVLC_INCLUDE_DIRS
|
||||
# LIBVLC_LIBRARIES
|
||||
#
|
||||
# For use in OBS:
|
||||
#
|
||||
# VLC_INCLUDE_DIR
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
if (PKG_CONFIG_FOUND)
|
||||
pkg_check_modules(_VLC QUIET VLC)
|
||||
endif()
|
||||
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
set(_lib_suffix 64)
|
||||
else()
|
||||
set(_lib_suffix 32)
|
||||
endif()
|
||||
|
||||
find_path(VLC_INCLUDE_DIR
|
||||
NAMES libvlc.h
|
||||
HINTS
|
||||
ENV VLCPath${_lib_suffix}
|
||||
ENV VLCPath
|
||||
ENV DepsPath${_lib_suffix}
|
||||
ENV DepsPath
|
||||
${VLCPath${_lib_suffix}}
|
||||
${VLCPath}
|
||||
${DepsPath${_lib_suffix}}
|
||||
${DepsPath}
|
||||
${_VLC_INCLUDE_DIRS}
|
||||
PATHS
|
||||
/usr/include /usr/local/include /opt/local/include /sw/include
|
||||
PATH_SUFFIXES
|
||||
vlc include/vlc include)
|
||||
|
||||
find_library(VLC_LIB
|
||||
NAMES ${_VLC_LIBRARIES} VLC libVLC
|
||||
HINTS
|
||||
ENV VLCPath${_lib_suffix}
|
||||
ENV VLCPath
|
||||
ENV DepsPath${_lib_suffix}
|
||||
ENV DepsPath
|
||||
${VLCPath${_lib_suffix}}
|
||||
${VLCPath}
|
||||
${DepsPath${_lib_suffix}}
|
||||
${DepsPath}
|
||||
${_VLC_LIBRARY_DIRS}
|
||||
PATHS
|
||||
/usr/lib /usr/local/lib /opt/local/lib /sw/lib
|
||||
PATH_SUFFIXES
|
||||
lib${_lib_suffix} lib
|
||||
libs${_lib_suffix} libs
|
||||
bin${_lib_suffix} bin
|
||||
../lib${_lib_suffix} ../lib
|
||||
../libs${_lib_suffix} ../libs
|
||||
../bin${_lib_suffix} ../bin)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(LibVLC_INCLUDES DEFAULT_MSG VLC_INCLUDE_DIR)
|
||||
find_package_handle_standard_args(LibVLC DEFAULT_MSG VLC_LIB VLC_INCLUDE_DIR)
|
||||
mark_as_advanced(VLC_INCLUDE_DIR VLC_LIB)
|
||||
|
||||
if(LIBVLC_INCLUDES_FOUND)
|
||||
set(LIBVLC_INCLUDE_DIRS ${VLC_INCLUDE_DIR})
|
||||
endif()
|
||||
|
||||
if(LIBVLC_FOUND)
|
||||
set(LIBVLC_LIBRARIES ${VLC_LIB})
|
||||
endif()
|
||||
68
cmake/Modules/FindLibspeexdsp.cmake
Normal file
68
cmake/Modules/FindLibspeexdsp.cmake
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Once done these will be defined:
|
||||
#
|
||||
# LIBSPEEXDSP_FOUND
|
||||
# LIBSPEEXDSP_INCLUDE_DIRS
|
||||
# LIBSPEEXDSP_LIBRARIES
|
||||
#
|
||||
# For use in OBS:
|
||||
#
|
||||
# SPEEXDSP_INCLUDE_DIR
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
if (PKG_CONFIG_FOUND)
|
||||
pkg_check_modules(_SPEEXDSP QUIET speexdsp libspeexdsp)
|
||||
endif()
|
||||
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
set(_lib_suffix 64)
|
||||
else()
|
||||
set(_lib_suffix 32)
|
||||
endif()
|
||||
|
||||
find_path(SPEEXDSP_INCLUDE_DIR
|
||||
NAMES speex/speex_preprocess.h
|
||||
HINTS
|
||||
ENV speexPath${_lib_suffix}
|
||||
ENV speexPath
|
||||
ENV DepsPath${_lib_suffix}
|
||||
ENV DepsPath
|
||||
${speexPath${_lib_suffix}}
|
||||
${speexPath}
|
||||
${DepsPath${_lib_suffix}}
|
||||
${DepsPath}
|
||||
${_SPEEXDSP_INCLUDE_DIRS}
|
||||
PATHS
|
||||
/usr/include /usr/local/include /opt/local/include /sw/include
|
||||
PATH_SUFFIXES
|
||||
include)
|
||||
|
||||
find_library(SPEEXDSP_LIB
|
||||
NAMES ${_SPEEXDSP_LIBRARIES} speexdsp libspeexdsp
|
||||
HINTS
|
||||
ENV speexPath${_lib_suffix}
|
||||
ENV speexPath
|
||||
ENV DepsPath${_lib_suffix}
|
||||
ENV DepsPath
|
||||
${speexPath${_lib_suffix}}
|
||||
${speexPath}
|
||||
${DepsPath${_lib_suffix}}
|
||||
${DepsPath}
|
||||
${_SPEEXDSP_LIBRARY_DIRS}
|
||||
PATHS
|
||||
/usr/lib /usr/local/lib /opt/local/lib /sw/lib
|
||||
PATH_SUFFIXES
|
||||
lib${_lib_suffix} lib
|
||||
libs${_lib_suffix} libs
|
||||
bin${_lib_suffix} bin
|
||||
../lib${_lib_suffix} ../lib
|
||||
../libs${_lib_suffix} ../libs
|
||||
../bin${_lib_suffix} ../bin)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(Libspeexdsp DEFAULT_MSG SPEEXDSP_LIB SPEEXDSP_INCLUDE_DIR)
|
||||
mark_as_advanced(SPEEXDSP_INCLUDE_DIR SPEEXDSP_LIB)
|
||||
|
||||
if(LIBSPEEXDSP_FOUND)
|
||||
set(LIBSPEEXDSP_INCLUDE_DIRS ${SPEEXDSP_INCLUDE_DIR})
|
||||
set(LIBSPEEXDSP_LIBRARIES ${SPEEXDSP_LIB})
|
||||
endif()
|
||||
Loading…
Add table
Add a link
Reference in a new issue