1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 07:24:44 -04:00

Web API: implemented device run APIs for BladeRF output, HackRF, PlutoSDR and LimeSDR ourput

This commit is contained in:
f4exb
2017-12-10 01:57:50 +01:00
parent 9819e01da5
commit 565083e5f5
38 changed files with 638 additions and 22 deletions
@@ -1,5 +1,7 @@
project(hackrfinput)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(hackrfinput_SOURCES
hackrfinputgui.cpp
hackrfinput.cpp
@@ -24,6 +26,7 @@ if (BUILD_DEBIAN)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${LIBHACKRFSRC}
${LIBHACKRFSRC}/libhackrf/src
@@ -32,6 +35,7 @@ else (BUILD_DEBIAN)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${LIBHACKRF_INCLUDE_DIR}
)
@@ -58,6 +62,7 @@ target_link_libraries(inputhackrf
hackrf
sdrbase
sdrgui
swagger
hackrfdevice
)
else (BUILD_DEBIAN)
@@ -66,6 +71,7 @@ target_link_libraries(inputhackrf
${LIBHACKRF_LIBRARIES}
sdrbase
sdrgui
swagger
hackrfdevice
)
endif (BUILD_DEBIAN)