1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -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
+9
View File
@@ -77,6 +77,14 @@ else(LIBUSB_FOUND AND LIBMIRISDR_FOUND)
message(STATUS "LibMiriSDR NOT found")
endif(LIBUSB_FOUND AND LIBMIRISDR_FOUND)
find_package(SoapySDR)
if(LIBUSB_FOUND AND SOAPYSDR_FOUND)
add_subdirectory(soapysdrinput)
message(STATUS "SoapySDR found")
else()
message(STATUS "SoapySDR not found")
endif()
if (BUILD_DEBIAN)
add_subdirectory(airspy)
add_subdirectory(airspyhf)
@@ -89,6 +97,7 @@ if (BUILD_DEBIAN)
add_subdirectory(rtlsdr)
add_subdirectory(sdrdaemonsource)
add_subdirectory(sdrplay)
add_subdirectory(soapysdrinput)
endif (BUILD_DEBIAN)
add_subdirectory(filesource)
@@ -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)