/thirdparty/liblastfm2/cmake/modules/FindLibSamplerate.cmake
http://github.com/tomahawk-player/tomahawk · CMake · 22 lines · 8 code · 4 blank · 10 comment · 1 complexity · 8fb987d78d03084b571c2dd1568f9d6c MD5 · raw file
- # This file is copyrighted under the BSD-license for buildsystem files of KDE
- # copyright 2010, Patrick von Reth <patrick.vonreth@gmail.com>
- #
- #
- # - Try to find the libsamplerate library
- # Once done this will define
- #
- # LIBSAMPLERATE_FOUND Set to TRUE if libsamplerate librarys and include directory is found
- # LIBSAMPLERATE_LIBRARY The libsamplerate librarys
- # LIBSAMPLERATE_INCLUDE_DIR The libsamplerate include directory
- find_library(LIBSAMPLERATE_LIBRARY NAMES samplerate libsamplerate-0 samplerate-0)
- find_path(LIBSAMPLERATE_INCLUDE_DIR samplerate.h)
- if(LIBSAMPLERATE_LIBRARY AND LIBSAMPLERATE_INCLUDE_DIR)
- set(LIBSAMPLERATE_FOUND TRUE)
- message(STATUS "Found libsamplerate ${LIBSAMPLERATE_LIBRARY}")
- else(LIBSAMPLERATE_LIBRARY AND LIBSAMPLERATE_PLUGIN_PATH)
- message(STATUS "Could not find libsamplerate, get it http://www.mega-nerd.com/SRC/")
- endif(LIBSAMPLERATE_LIBRARY AND LIBSAMPLERATE_INCLUDE_DIR)