mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-18 17:35:44 +00:00
Update soxr to 0.1.3; make wasm compatible
This commit is contained in:
23
soxr/lsr-tests/cmake/Modules/FindFFTW.cmake
Normal file
23
soxr/lsr-tests/cmake/Modules/FindFFTW.cmake
Normal file
@@ -0,0 +1,23 @@
|
||||
# SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
|
||||
# Licence for this file: LGPL v2.1 See LICENCE for details.
|
||||
|
||||
# - Find FFTW
|
||||
# Find the native installation of this package: includes and libraries.
|
||||
#
|
||||
# FFTW_INCLUDES - where to find headers for this package.
|
||||
# FFTW_LIBRARIES - List of libraries when using this package.
|
||||
# FFTW_FOUND - True if this package can be found.
|
||||
|
||||
if (FFTW_INCLUDES)
|
||||
set (FFTW_FIND_QUIETLY TRUE)
|
||||
endif (FFTW_INCLUDES)
|
||||
|
||||
find_path (FFTW_INCLUDES fftw3.h)
|
||||
|
||||
find_library (FFTW_LIBRARIES NAMES fftw3)
|
||||
|
||||
include (FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args (
|
||||
FFTW DEFAULT_MSG FFTW_LIBRARIES FFTW_INCLUDES)
|
||||
|
||||
mark_as_advanced (FFTW_LIBRARIES FFTW_INCLUDES)
|
||||
23
soxr/lsr-tests/cmake/Modules/Findsndfile.cmake
Normal file
23
soxr/lsr-tests/cmake/Modules/Findsndfile.cmake
Normal file
@@ -0,0 +1,23 @@
|
||||
# SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
|
||||
# Licence for this file: LGPL v2.1 See LICENCE for details.
|
||||
|
||||
# - Find SNDFILE
|
||||
# Find the native installation of this package: includes and libraries.
|
||||
#
|
||||
# SNDFILE_INCLUDES - where to find headers for this package.
|
||||
# SNDFILE_LIBRARIES - List of libraries when using this package.
|
||||
# SNDFILE_FOUND - True if this package can be found.
|
||||
|
||||
if (SNDFILE_INCLUDES)
|
||||
set (SNDFILE_FIND_QUIETLY TRUE)
|
||||
endif (SNDFILE_INCLUDES)
|
||||
|
||||
find_path (SNDFILE_INCLUDES sndfile.h)
|
||||
|
||||
find_library (SNDFILE_LIBRARIES NAMES sndfile)
|
||||
|
||||
include (FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args (
|
||||
SNDFILE DEFAULT_MSG SNDFILE_LIBRARIES SNDFILE_INCLUDES)
|
||||
|
||||
mark_as_advanced (SNDFILE_LIBRARIES SNDFILE_INCLUDES)
|
||||
Reference in New Issue
Block a user