1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

SoapySDR support: created server plugins

This commit is contained in:
f4exb
2018-11-23 01:17:06 +01:00
parent ca36f757e1
commit 4fa3d7cff3
4 changed files with 151 additions and 0 deletions
@@ -0,0 +1,68 @@
project(soapysdrinput)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(PLUGIN_PREFIX "../../../plugins/samplesource/soapysdrinput")
set(soapysdrinput_SOURCES
${PLUGIN_PREFIX}/soapysdrinput.cpp
${PLUGIN_PREFIX}/soapysdrinputplugin.cpp
${PLUGIN_PREFIX}/soapysdrinputsettings.cpp
${PLUGIN_PREFIX}/soapysdrinputthread.cpp
)
set(soapysdrinput_HEADERS
${PLUGIN_PREFIX}/soapysdrinput.h
${PLUGIN_PREFIX}/soapysdrinputplugin.h
${PLUGIN_PREFIX}/soapysdrinputsettings.h
${PLUGIN_PREFIX}/soapysdrinputthread.h
)
if (BUILD_DEBIAN)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${LIBSOAPYSDRSRC}/include
${LIBSOAPYSDRSRC}/src
)
else (BUILD_DEBIAN)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${SOAPYSDR_INCLUDE_DIR}
)
endif (BUILD_DEBIAN)
add_definitions(${QT_DEFINITIONS})
add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED)
add_library(inputsoapysdrsrv SHARED
${soapysdrinput_SOURCES}
${soapysdrinput_HEADERS_MOC}
)
if (BUILD_DEBIAN)
target_link_libraries(inputsoapysdrsrv
${QT_LIBRARIES}
soapysdr
sdrbase
swagger
soapysdrdevice
)
else (BUILD_DEBIAN)
target_link_libraries(inputsoapysdrsrv
${QT_LIBRARIES}
${SOAPYSDR_LIBRARY}
sdrbase
swagger
soapysdrdevice
)
endif (BUILD_DEBIAN)
target_link_libraries(inputsoapysdrsrv Qt5::Core)
install(TARGETS inputsoapysdrsrv DESTINATION lib/plugins/samplesource)