mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-04 02:28:33 -04:00
v7: rename vordemodsc files to vordemod files. Part of #1223
This commit is contained in:
parent
42980850ce
commit
7d450c6e42
@ -15,7 +15,7 @@ add_subdirectory(localsink)
|
||||
add_subdirectory(filesink)
|
||||
add_subdirectory(freqtracker)
|
||||
add_subdirectory(demodchirpchat)
|
||||
add_subdirectory(demodvorsc)
|
||||
add_subdirectory(demodvor)
|
||||
add_subdirectory(demodpacket)
|
||||
add_subdirectory(demodais)
|
||||
add_subdirectory(demodpager)
|
||||
|
@ -1,23 +1,23 @@
|
||||
project(vorsc)
|
||||
project(vor)
|
||||
|
||||
set(vorsc_SOURCES
|
||||
vordemodsc.cpp
|
||||
vordemodscsettings.cpp
|
||||
vordemodscbaseband.cpp
|
||||
vordemodscsink.cpp
|
||||
vordemodscplugin.cpp
|
||||
vordemodscwebapiadapter.cpp
|
||||
vordemodscreport.cpp
|
||||
set(vor_SOURCES
|
||||
vordemod.cpp
|
||||
vordemodsettings.cpp
|
||||
vordemodbaseband.cpp
|
||||
vordemodsink.cpp
|
||||
vordemodplugin.cpp
|
||||
vordemodwebapiadapter.cpp
|
||||
vordemodreport.cpp
|
||||
)
|
||||
|
||||
set(vorsc_HEADERS
|
||||
vordemodsc.h
|
||||
vordemodscsettings.h
|
||||
vordemodscbaseband.h
|
||||
vordemodscsink.h
|
||||
vordemodscplugin.h
|
||||
vordemodscwebapiadapter.h
|
||||
vordemodscreport.h
|
||||
set(vor_HEADERS
|
||||
vordemod.h
|
||||
vordemodsettings.h
|
||||
vordemodbaseband.h
|
||||
vordemodsink.h
|
||||
vordemodplugin.h
|
||||
vordemodwebapiadapter.h
|
||||
vordemodreport.h
|
||||
)
|
||||
|
||||
include_directories(
|
||||
@ -25,29 +25,29 @@ include_directories(
|
||||
)
|
||||
|
||||
if(NOT SERVER_MODE)
|
||||
set(vorsc_SOURCES
|
||||
${vorsc_SOURCES}
|
||||
vordemodscgui.cpp
|
||||
vordemodscgui.ui
|
||||
set(vor_SOURCES
|
||||
${vor_SOURCES}
|
||||
vordemodgui.cpp
|
||||
vordemodgui.ui
|
||||
)
|
||||
set(vorsc_HEADERS
|
||||
${vorsc_HEADERS}
|
||||
vordemodscgui.h
|
||||
set(vor_HEADERS
|
||||
${vor_HEADERS}
|
||||
vordemodgui.h
|
||||
)
|
||||
|
||||
set(TARGET_NAME demodvorsc)
|
||||
set(TARGET_NAME demodvor)
|
||||
set(TARGET_LIB "Qt5::Widgets")
|
||||
set(TARGET_LIB_GUI "sdrgui")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
||||
else()
|
||||
set(TARGET_NAME demodvorscsrv)
|
||||
set(TARGET_NAME demodvorsrv)
|
||||
set(TARGET_LIB "")
|
||||
set(TARGET_LIB_GUI "")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
||||
endif()
|
||||
|
||||
add_library(${TARGET_NAME} SHARED
|
||||
${vorsc_SOURCES}
|
||||
${vor_SOURCES}
|
||||
)
|
||||
|
||||
target_link_libraries(${TARGET_NAME}
|
@ -39,8 +39,8 @@
|
||||
#include "util/db.h"
|
||||
#include "maincore.h"
|
||||
|
||||
#include "vordemodscreport.h"
|
||||
#include "vordemodsc.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemod.h"
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(VORDemod::MsgConfigureVORDemod, Message)
|
||||
|
@ -28,8 +28,8 @@
|
||||
#include "channel/channelapi.h"
|
||||
#include "util/message.h"
|
||||
|
||||
#include "vordemodscbaseband.h"
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodbaseband.h"
|
||||
#include "vordemodsettings.h"
|
||||
|
||||
class QNetworkAccessManager;
|
||||
class QNetworkReply;
|
@ -22,8 +22,8 @@
|
||||
#include "dsp/dspcommands.h"
|
||||
#include "dsp/downchannelizer.h"
|
||||
|
||||
#include "vordemodscbaseband.h"
|
||||
#include "vordemodscreport.h"
|
||||
#include "vordemodbaseband.h"
|
||||
#include "vordemodreport.h"
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodBaseband::MsgConfigureVORDemodBaseband, Message)
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "util/message.h"
|
||||
#include "util/messagequeue.h"
|
||||
|
||||
#include "vordemodscsink.h"
|
||||
#include "vordemodsink.h"
|
||||
|
||||
class DownChannelizer;
|
||||
|
@ -37,10 +37,10 @@
|
||||
#include "channel/channelwebapiutils.h"
|
||||
#include "maincore.h"
|
||||
|
||||
#include "ui_vordemodscgui.h"
|
||||
#include "vordemodsc.h"
|
||||
#include "vordemodscreport.h"
|
||||
#include "vordemodscgui.h"
|
||||
#include "ui_vordemodgui.h"
|
||||
#include "vordemod.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodgui.h"
|
||||
|
||||
VORDemodGUI* VORDemodGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
||||
{
|
@ -24,7 +24,7 @@
|
||||
#include "dsp/movingaverage.h"
|
||||
#include "util/messagequeue.h"
|
||||
#include "settings/rollupstate.h"
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodsettings.h"
|
||||
|
||||
class PluginAPI;
|
||||
class DeviceUISet;
|
@ -20,15 +20,15 @@
|
||||
#include "plugin/pluginapi.h"
|
||||
|
||||
#ifndef SERVER_MODE
|
||||
#include "vordemodscgui.h"
|
||||
#include "vordemodgui.h"
|
||||
#endif
|
||||
#include "vordemodsc.h"
|
||||
#include "vordemodscwebapiadapter.h"
|
||||
#include "vordemodscplugin.h"
|
||||
#include "vordemod.h"
|
||||
#include "vordemodwebapiadapter.h"
|
||||
#include "vordemodplugin.h"
|
||||
|
||||
const PluginDescriptor VORDemodPlugin::m_pluginDescriptor = {
|
||||
VORDemod::m_channelId,
|
||||
QStringLiteral("VOR Single Channel Demodulator"),
|
||||
QStringLiteral("VOR Demodulator"),
|
||||
QStringLiteral("6.20.2"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
@ -15,7 +15,7 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "vordemodscreport.h"
|
||||
#include "vordemodreport.h"
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodReport::MsgReportRadial, Message)
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodReport::MsgReportIdent, Message)
|
@ -21,7 +21,7 @@
|
||||
#include "dsp/dspengine.h"
|
||||
#include "util/simpleserializer.h"
|
||||
#include "settings/serializable.h"
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodsettings.h"
|
||||
|
||||
VORDemodSettings::VORDemodSettings() :
|
||||
m_channelMarker(nullptr),
|
@ -27,9 +27,9 @@
|
||||
#include "util/morse.h"
|
||||
#include "util/units.h"
|
||||
|
||||
#include "vordemodscreport.h"
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodscsink.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodsink.h"
|
||||
|
||||
VORDemodSCSink::VORDemodSCSink() :
|
||||
m_channelFrequencyOffset(0),
|
@ -30,7 +30,7 @@
|
||||
#include "util/doublebufferfifo.h"
|
||||
#include "util/messagequeue.h"
|
||||
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodsettings.h"
|
||||
|
||||
#include <vector>
|
||||
|
@ -17,8 +17,8 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "SWGChannelSettings.h"
|
||||
#include "vordemodsc.h"
|
||||
#include "vordemodscwebapiadapter.h"
|
||||
#include "vordemod.h"
|
||||
#include "vordemodwebapiadapter.h"
|
||||
|
||||
VORDemodSCWebAPIAdapter::VORDemodSCWebAPIAdapter()
|
||||
{}
|
@ -20,7 +20,7 @@
|
||||
#define INCLUDE_VORDEMODSC_WEBAPIADAPTER_H
|
||||
|
||||
#include "channel/channelwebapiadapter.h"
|
||||
#include "vordemodscsettings.h"
|
||||
#include "vordemodsettings.h"
|
||||
|
||||
/**
|
||||
* Standalone API adapter only for the settings
|
@ -28,7 +28,7 @@
|
||||
|
||||
const PluginDescriptor VORDemodMCPlugin::m_pluginDescriptor = {
|
||||
VORDemodMC::m_channelId,
|
||||
QStringLiteral("VOR Demodulator"),
|
||||
QStringLiteral("VOR Multi Channel Demodulator"),
|
||||
QStringLiteral("6.20.2"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
|
Loading…
Reference in New Issue
Block a user