mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-07 16:34:45 -04:00
FileSource channel: initial commit
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
#include "fileinputplugin.h"
|
||||
|
||||
const PluginDescriptor FileInputPlugin::m_pluginDescriptor = {
|
||||
QString("File input"),
|
||||
QString("File device input"),
|
||||
QString("4.11.0"),
|
||||
QString("(c) Edouard Griffiths, F4EXB"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
project(filesource)
|
||||
|
||||
set(filesource_SOURCES
|
||||
filesourceinput.cpp
|
||||
filesourceplugin.cpp
|
||||
filesourcethread.cpp
|
||||
filesourceinputsettings.cpp
|
||||
)
|
||||
|
||||
set(filesource_HEADERS
|
||||
filesourceinput.h
|
||||
filesourceplugin.h
|
||||
filesourcethread.h
|
||||
filesourceinputsettings.h
|
||||
)
|
||||
|
||||
include_directories(
|
||||
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
||||
)
|
||||
|
||||
if(NOT SERVER_MODE)
|
||||
set(filesource_SOURCES
|
||||
${filesource_SOURCES}
|
||||
filesourcegui.cpp
|
||||
|
||||
filesourcegui.ui
|
||||
)
|
||||
set(filesource_HEADERS
|
||||
${filesource_HEADERS}
|
||||
filesourcegui.h
|
||||
)
|
||||
|
||||
set(TARGET_NAME inputfilesource)
|
||||
set(TARGET_LIB "Qt5::Widgets")
|
||||
set(TARGET_LIB_GUI "sdrgui")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
||||
else()
|
||||
set(TARGET_NAME inputfilesourcesrv)
|
||||
set(TARGET_LIB "")
|
||||
set(TARGET_LIB_GUI "")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
||||
endif()
|
||||
|
||||
add_library(${TARGET_NAME} SHARED
|
||||
${filesource_SOURCES}
|
||||
)
|
||||
|
||||
target_link_libraries(${TARGET_NAME}
|
||||
Qt5::Core
|
||||
${TARGET_LIB}
|
||||
sdrbase
|
||||
${TARGET_LIB_GUI}
|
||||
swagger
|
||||
)
|
||||
|
||||
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|
||||
Reference in New Issue
Block a user