2021-06-29 18:14:26 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(audio_sink)
|
|
|
|
|
|
|
|
if (MSVC)
|
2021-10-03 02:04:02 +02:00
|
|
|
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
2021-10-03 01:13:15 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
add_compile_options(-O3 -std=c++17 -fpermissive)
|
2021-06-29 18:14:26 +02:00
|
|
|
endif (MSVC)
|
|
|
|
|
2021-10-03 01:13:15 +02:00
|
|
|
|
2021-06-29 18:14:26 +02:00
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
|
|
|
|
add_library(audio_sink SHARED ${SRC})
|
|
|
|
target_link_libraries(audio_sink PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(audio_sink PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
find_package(portaudio CONFIG REQUIRED)
|
|
|
|
target_link_libraries(sdrpp_core PUBLIC portaudio)
|
|
|
|
else (MSVC)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
|
|
|
pkg_check_modules(PORTAUDIO REQUIRED portaudio-2.0)
|
|
|
|
|
|
|
|
target_include_directories(sdrpp_core PUBLIC ${PORTAUDIO_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
target_link_directories(sdrpp_core PUBLIC ${PORTAUDIO_LIBRARY_DIRS})
|
|
|
|
|
|
|
|
target_link_libraries(sdrpp_core PUBLIC ${PORTAUDIO_LIBRARIES})
|
|
|
|
|
|
|
|
endif (MSVC)
|
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS audio_sink DESTINATION lib/sdrpp/plugins)
|