2019-07-01 06:40:51 -04:00
|
|
|
# - Try to find soxr include dirs and libraries
|
|
|
|
#
|
|
|
|
# Usage of this module as follows:
|
|
|
|
#
|
|
|
|
# find_package(soxr)
|
|
|
|
#
|
|
|
|
# Variables used by this module, they can change the default behaviour and need
|
|
|
|
# to be set before calling find_package:
|
|
|
|
#
|
|
|
|
# soxr_ROOT_DIR Set this variable to the root installation of
|
|
|
|
# soxr if the module has problems finding the
|
|
|
|
# proper installation path.
|
|
|
|
#
|
|
|
|
# Variables defined by this module:
|
|
|
|
#
|
|
|
|
# soxr_FOUND System has soxr, include and library dirs found
|
|
|
|
# soxr_INCLUDE_DIR The soxr include directories.
|
|
|
|
# soxr_LIBRARIES_STATIC The soxr libraries.
|
|
|
|
# soxr_LIBRARIES_SHARED The soxr libraries.
|
|
|
|
|
2019-07-01 20:23:51 -04:00
|
|
|
include(tearoot-helper)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
2019-07-01 06:40:51 -04:00
|
|
|
find_path(soxr_ROOT_DIR
|
2019-07-03 07:27:12 -04:00
|
|
|
NAMES include/soxr.h
|
2019-07-01 20:23:51 -04:00
|
|
|
HINTS ${soxr_ROOT_DIR} ${soxr_ROOT_DIR}/${BUILD_OUTPUT}
|
2019-07-01 06:40:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
find_path(soxr_INCLUDE_DIR
|
|
|
|
NAMES soxr.h
|
2019-07-01 20:23:51 -04:00
|
|
|
HINTS ${soxr_ROOT_DIR} ${soxr_ROOT_DIR}/include/
|
2019-07-01 06:40:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
find_library(soxr_LIBRARIES_STATIC
|
2019-07-03 07:27:12 -04:00
|
|
|
NAMES libsoxr.a soxr.a soxr.lib
|
2019-07-01 20:23:51 -04:00
|
|
|
HINTS ${soxr_ROOT_DIR} ${soxr_ROOT_DIR}/lib
|
2019-07-01 06:40:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
find_library(soxr_LIBRARIES_SHARED
|
2019-07-03 07:27:12 -04:00
|
|
|
NAMES soxr.dll libsoxr.so soxr.so
|
2019-07-01 20:23:51 -04:00
|
|
|
HINTS ${soxr_ROOT_DIR} ${soxr_ROOT_DIR}/lib
|
2019-07-01 06:40:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
find_package_handle_standard_args(soxr DEFAULT_MSG
|
|
|
|
soxr_INCLUDE_DIR
|
|
|
|
)
|
|
|
|
|
|
|
|
mark_as_advanced(
|
|
|
|
soxr_ROOT_DIR
|
|
|
|
soxr_INCLUDE_DIR
|
|
|
|
soxr_LIBRARIES_STATIC
|
|
|
|
soxr_LIBRARIES_SHARED
|
|
|
|
)
|