snapcast/common/CMakeLists.txt
2020-08-03 22:52:42 +02:00

17 lines
318 B
CMake

set(SOURCES
resampler.cpp
sample_format.cpp)
if(NOT WIN32)
list(APPEND SOURCES daemon.cpp)
endif()
if (SOXR_FOUND)
include_directories(${SOXR_INCLUDE_DIRS})
endif (SOXR_FOUND)
add_library(common STATIC ${SOURCES})
if (SOXR_FOUND)
target_link_libraries(common ${SOXR_LIBRARIES})
endif (SOXR_FOUND)