ref: af1d8845ac354530bc7deae0cd66f9d402e1e4a8
dir: /CMakeLists.txt/
cmake_minimum_required(VERSION 3.1)
project(libsamplerate VERSION 0.1.9 LANGUAGES C)
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
set(LIBSAMPLERATE_IS_ROOT_PROJECT ON)
else()
set(LIBSAMPLERATE_IS_ROOT_PROJECT OFF)
endif()
option(LIBSAMPLERATE_TESTS "Enable to generate test targets" ${LIBSAMPLERATE_IS_ROOT_PROJECT})
option(LIBSAMPLERATE_EXAMPLES "Enable to generate examples" ${LIBSAMPLERATE_IS_ROOT_PROJECT})
option(LIBSAMPLERATE_INSTALL "Enable to add install directives" ${LIBSAMPLERATE_IS_ROOT_PROJECT})
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
include(TestBigEndian)
include(CheckFunctionExists)
include(CheckIncludeFiles)
include(CheckSymbolExists)
include(CheckTypeSize)
include(CMakePushCheckState)
include(ClipMode)
set(SAMPLERATE_SRC
${PROJECT_SOURCE_DIR}/src/samplerate.c
${PROJECT_SOURCE_DIR}/src/src_linear.c
${PROJECT_SOURCE_DIR}/src/src_sinc.c
${PROJECT_SOURCE_DIR}/src/src_zoh.c)
if(WIN32)
set(OS_IS_WIN32 TRUE)
set(SAMPLERATE_SRC
${SAMPLERATE_SRC}
${PROJECT_SOURCE_DIR}/Win32/libsamplerate-0.def)
include_directories(Win32)
endif()
test_big_endian(CPU_IS_BIG_ENDIAN)
if(CPU_IS_BIG_ENDIAN)
set(CPU_IS_LITTLE_ENDIAN 0)
else()
set(CPU_IS_LITTLE_ENDIAN 1)
endif()
cmake_push_check_state(RESET)
check_symbol_exists(pow math.h RESULT)
if(RESULT)
set(NEED_MATH OFF)
else()
set(NEED_MATH ON)
list(APPEND CMAKE_REQUIRED_LIBRARIES m)
endif()
check_symbol_exists(lrint math.h HAVE_LRINT)
check_symbol_exists(lrintf math.h HAVE_LRINTF)
# This will set CPU_CLIPS_NEGATIVE and CPU_CLIPS_POSITIVE
# requires HAVE_LRINT being set
clip_mode()
cmake_pop_check_state()
check_function_exists(alarm HAVE_ALARM)
check_function_exists(signal HAVE_SIGNAL)
check_include_files(stdint.h HAVE_STDINT)
check_include_files(sys/times.h HAVE_SYS_TIMES_H)
check_symbol_exists(SIGALRM signal.h HAVE_SIGALRM)
check_type_size(int SIZEOF_INT)
check_type_size(long SIZEOF_LONG)
find_package(ALSA)
set(HAVE_ALSA ${ALSA_FOUND})
if(ALSA_FOUND)
include_directories("${ALSA_INCLUDE_DIR}")
endif()
find_package(Sndfile)
set(HAVE_SNDFILE ${SNDFILE_FOUND})
if(SNDFILE_FOUND)
include_directories("${SNDFILE_INCLUDE_DIR}")
endif()
find_package(FFTW)
set(HAVE_FFTW3 ${FFTW_FOUND})
if(FFTW_FOUND)
include_directories("${FFTW_INCLUDE_DIR}")
endif()
configure_file(${PROJECT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
add_library(samplerate ${SAMPLERATE_SRC})
if(BUILD_SHARED_LIBS AND WIN32)
if (MSVC)
set_target_properties(samplerate PROPERTIES OUTPUT_NAME "libsamplerate-0")
else()
set_target_properties(samplerate PROPERTIES OUTPUT_NAME "samplerate-0")
endif()
endif()
target_include_directories(samplerate PUBLIC
${PROJECT_SOURCE_DIR}/src
${CMAKE_CURRENT_BINARY_DIR})
if(NEED_MATH)
target_link_libraries(samplerate PUBLIC m)
endif()
if(LIBSAMPLERATE_TESTS)
enable_testing()
file(GLOB TEST_SRCS ${PROJECT_SOURCE_DIR}/tests/*_test.c)
foreach(testSrc ${TEST_SRCS})
get_filename_component(testName ${testSrc} NAME_WE)
add_executable(${testName}
${testSrc}
${PROJECT_SOURCE_DIR}/tests/util.c
${PROJECT_SOURCE_DIR}/tests/calc_snr.c)
target_link_libraries(${testName} PUBLIC samplerate)
if(FFTW_FOUND)
target_link_libraries(${testName} PUBLIC ${FFTW_LIBRARY})
endif()
add_test(NAME ${testName} COMMAND ${testName})
endforeach(testSrc)
endif()
if(LIBSAMPLERATE_EXAMPLES)
set(EXAMPLE_SRCS
${PROJECT_SOURCE_DIR}/examples/timewarp-file.c
${PROJECT_SOURCE_DIR}/examples/varispeed-play.c)
foreach(exampleSrc ${EXAMPLE_SRCS})
get_filename_component(exampleName ${exampleSrc} NAME_WE)
add_executable(${exampleName}
${exampleSrc}
${PROJECT_SOURCE_DIR}/examples/audio_out.c)
target_link_libraries(${exampleName} PUBLIC samplerate)
if(ALSA_FOUND)
target_link_libraries(${exampleName} PUBLIC ${ALSA_LIBRARY})
endif()
if(SNDFILE_FOUND)
target_link_libraries(${exampleName} PUBLIC ${SNDFILE_LIBRARY})
endif()
if(WIN32)
target_link_libraries(${exampleName} PUBLIC winmm)
endif()
if (APPLE)
target_link_libraries (${exampleName} PUBLIC "-framework CoreAudio")
endif()
endforeach(exampleSrc)
endif()
if(LIBSAMPLERATE_INSTALL)
set(prefix ${CMAKE_INSTALL_PREFIX})
set(exec_prefix "\${prefix}")
set(includedir "\${prefix}/include")
set(libdir "\${exec_prefix}/lib")
set(VERSION "${PROJECT_VERSION}")
if(NEED_MATH)
set(LIBS "-lm")
endif()
configure_file(samplerate.pc.in samplerate.pc @ONLY)
install(TARGETS samplerate DESTINATION lib)
install(FILES src/samplerate.h DESTINATION include)
install(DIRECTORY doc/ DESTINATION share/doc/libsamplerate)
install(FILES ${CMAKE_BINARY_DIR}/samplerate.pc DESTINATION lib/pkgconfig)
endif()