2021-07-30 21:56:34 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(network_sink)
|
|
|
|
|
|
|
|
if (MSVC)
|
2021-10-03 02:04:02 +02:00
|
|
|
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
2021-07-30 21:56:34 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
2021-07-30 21:56:34 +02:00
|
|
|
else ()
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(-O3 -std=c++17)
|
2021-07-30 21:56:34 +02:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
include_directories("../recorder/src")
|
|
|
|
include_directories("../meteor_demodulator/src")
|
|
|
|
include_directories("../radio/src")
|
|
|
|
|
|
|
|
add_library(network_sink SHARED ${SRC})
|
|
|
|
target_link_libraries(network_sink PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(network_sink PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS network_sink DESTINATION lib/sdrpp/plugins)
|