mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-04 22:27:53 -04:00
Windows: MSVC2017: adapt more channel plugin modules (1)
This commit is contained in:
parent
98a193e591
commit
b224e42ef0
@ -11,10 +11,12 @@ TARGET = dsdcc
|
|||||||
|
|
||||||
CONFIG(MINGW32):LIBDSDCCSRC = "C:\softs\dsdcc"
|
CONFIG(MINGW32):LIBDSDCCSRC = "C:\softs\dsdcc"
|
||||||
CONFIG(MINGW64):LIBDSDCCSRC = "C:\softs\dsdcc"
|
CONFIG(MINGW64):LIBDSDCCSRC = "C:\softs\dsdcc"
|
||||||
|
CONFIG(MSVC):LIBDSDCCSRC = "C:\softs\dsdcc"
|
||||||
CONFIG(macx):LIBDSDCCSRC = "../../deps/dsdcc"
|
CONFIG(macx):LIBDSDCCSRC = "../../deps/dsdcc"
|
||||||
|
|
||||||
CONFIG(MINGW32):LIBMBELIBSRC = "C:\softs\mbelib"
|
CONFIG(MINGW32):LIBMBELIBSRC = "C:\softs\mbelib"
|
||||||
CONFIG(MINGW64):LIBMBELIBSRC = "C:\softs\mbelib"
|
CONFIG(MINGW64):LIBMBELIBSRC = "C:\softs\mbelib"
|
||||||
|
CONFIG(MSVC):LIBMBELIBSRC = "C:\softs\mbelib"
|
||||||
CONFIG(macx):LIBMBELIBSRC = "../../deps/mbelib"
|
CONFIG(macx):LIBMBELIBSRC = "../../deps/mbelib"
|
||||||
|
|
||||||
INCLUDEPATH += $$LIBDSDCCSRC
|
INCLUDEPATH += $$LIBDSDCCSRC
|
||||||
|
@ -17,6 +17,8 @@ QMAKE_CXXFLAGS += -std=c++11
|
|||||||
CONFIG(Release):build_subdir = release
|
CONFIG(Release):build_subdir = release
|
||||||
CONFIG(Debug):build_subdir = debug
|
CONFIG(Debug):build_subdir = debug
|
||||||
|
|
||||||
|
CONFIG(MSVC):DEFINES += httpserver_EXPORTS
|
||||||
|
|
||||||
# Enable very detailed debug messages when compiling the debug version
|
# Enable very detailed debug messages when compiling the debug version
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
DEFINES += SUPERVERBOSE
|
DEFINES += SUPERVERBOSE
|
||||||
|
@ -15,8 +15,8 @@ SUBDIRS += qrtplib
|
|||||||
SUBDIRS += swagger
|
SUBDIRS += swagger
|
||||||
SUBDIRS += sdrbase
|
SUBDIRS += sdrbase
|
||||||
SUBDIRS += sdrgui
|
SUBDIRS += sdrgui
|
||||||
SUBDIRS += fcdhid
|
CONFIG(!MSVC):SUBDIRS += fcdhid
|
||||||
SUBDIRS += fcdlib
|
CONFIG(!MSVC):SUBDIRS += fcdlib
|
||||||
SUBDIRS += libairspy
|
SUBDIRS += libairspy
|
||||||
SUBDIRS += libairspyhf
|
SUBDIRS += libairspyhf
|
||||||
#SUBDIRS += libbladerf
|
#SUBDIRS += libbladerf
|
||||||
@ -27,7 +27,7 @@ CONFIG(!MSVC):SUBDIRS += libperseus
|
|||||||
SUBDIRS += librtlsdr
|
SUBDIRS += librtlsdr
|
||||||
SUBDIRS += devices
|
SUBDIRS += devices
|
||||||
SUBDIRS += mbelib
|
SUBDIRS += mbelib
|
||||||
SUBDIRS += dsdcc
|
CONFIG(!MSVC):SUBDIRS += dsdcc
|
||||||
CONFIG(MSVC):SUBDIRS += cm256cc
|
CONFIG(MSVC):SUBDIRS += cm256cc
|
||||||
SUBDIRS += plugins/samplesource/airspy
|
SUBDIRS += plugins/samplesource/airspy
|
||||||
SUBDIRS += plugins/samplesource/airspyhf
|
SUBDIRS += plugins/samplesource/airspyhf
|
||||||
@ -51,8 +51,8 @@ SUBDIRS += plugins/channelrx/chanalyzer
|
|||||||
SUBDIRS += plugins/channelrx/demodam
|
SUBDIRS += plugins/channelrx/demodam
|
||||||
SUBDIRS += plugins/channelrx/demodatv
|
SUBDIRS += plugins/channelrx/demodatv
|
||||||
SUBDIRS += plugins/channelrx/demodbfm
|
SUBDIRS += plugins/channelrx/demodbfm
|
||||||
SUBDIRS += plugins/channelrx/demoddsd
|
CONFIG(!MSVC):SUBDIRS += plugins/channelrx/demoddsd
|
||||||
SUBDIRS += plugins/channelrx/demodlora
|
CONFIG(!MSVC):SUBDIRS += plugins/channelrx/demodlora
|
||||||
SUBDIRS += plugins/channelrx/demodnfm
|
SUBDIRS += plugins/channelrx/demodnfm
|
||||||
SUBDIRS += plugins/channelrx/demodssb
|
SUBDIRS += plugins/channelrx/demodssb
|
||||||
SUBDIRS += plugins/channelrx/demodwfm
|
SUBDIRS += plugins/channelrx/demodwfm
|
||||||
|
@ -30,7 +30,7 @@ class SDRBASE_API BasebandSampleSink : public QObject {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
/** Used to notify on which thread the sample sink is now running (with ThreadedSampleSink) */
|
/** Used to notify on which thread the sample sink is now running (with ThreadedSampleSink) */
|
||||||
class MsgThreadedSink : public Message {
|
class SDRBASE_API MsgThreadedSink : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -50,7 +50,7 @@ class SDRBASE_API CWKeyer : public QObject {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
class MsgConfigureCWKeyer : public Message {
|
class SDRBASE_API MsgConfigureCWKeyer : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -36,7 +36,7 @@ class MessageQueue;
|
|||||||
class SDRBASE_API UpChannelizer : public BasebandSampleSource {
|
class SDRBASE_API UpChannelizer : public BasebandSampleSource {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
class MsgChannelizerNotification : public Message {
|
class SDRBASE_API MsgChannelizerNotification : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -21,7 +21,9 @@
|
|||||||
#include <QAbstractButton>
|
#include <QAbstractButton>
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
|
|
||||||
class CRightClickEnabler : public QObject {
|
#include "export.h"
|
||||||
|
|
||||||
|
class SDRGUI_API CRightClickEnabler : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
CRightClickEnabler(QAbstractButton *button);
|
CRightClickEnabler(QAbstractButton *button);
|
||||||
|
@ -138,7 +138,7 @@ protected:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class LevelMeterVU : public LevelMeter
|
class SDRGUI_API LevelMeterVU : public LevelMeter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LevelMeterVU(QWidget *parent = 0);
|
LevelMeterVU(QWidget *parent = 0);
|
||||||
@ -148,7 +148,7 @@ protected:
|
|||||||
virtual void resized();
|
virtual void resized();
|
||||||
};
|
};
|
||||||
|
|
||||||
class LevelMeterSignalDB : public LevelMeter
|
class SDRGUI_API LevelMeterSignalDB : public LevelMeter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef enum
|
typedef enum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user