mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-05 11:09:13 -04:00
DSD demod: serialDV library support in Windows. Updates in sdrbase
This commit is contained in:
parent
7fe5716e90
commit
84479fdbcc
@ -23,10 +23,13 @@
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
#include <libgen.h>
|
||||
|
||||
#ifndef __WINDOWS__
|
||||
#include <termios.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <linux/serial.h>
|
||||
#include <libgen.h>
|
||||
#endif
|
||||
|
||||
#include <QDebug>
|
||||
#include <QThread>
|
||||
|
@ -12,11 +12,19 @@ TARGET = sdrbase
|
||||
INCLUDEPATH += $$PWD
|
||||
|
||||
DEFINES += USE_KISSFFT=1
|
||||
DEFINES += __WINDOWS__=1
|
||||
|
||||
CONFIG(Release):build_subdir = release
|
||||
CONFIG(Debug):build_subdir = debug
|
||||
|
||||
CONFIG(ANDROID):INCLUDEPATH += /opt/softs/boost_1_60_0
|
||||
|
||||
CONFIG(MINGW32):INCLUDEPATH += "D:\boost_1_58_0"
|
||||
CONFIG(MINGW64):INCLUDEPATH += "D:\boost_1_58_0"
|
||||
|
||||
CONFIG(MINGW32):INCLUDEPATH += "D:\softs\serialDV"
|
||||
CONFIG(MINGW64):INCLUDEPATH += "D:\softs\serialDV"
|
||||
|
||||
SOURCES += mainwindow.cpp\
|
||||
audio/audiodeviceinfo.cpp\
|
||||
audio/audiofifo.cpp\
|
||||
@ -29,6 +37,8 @@ SOURCES += mainwindow.cpp\
|
||||
dsp/dspcommands.cpp\
|
||||
dsp/dspengine.cpp\
|
||||
dsp/dspdeviceengine.cpp\
|
||||
dsp/dvserialengine.cpp\
|
||||
dsp/dvserialworker.cpp\
|
||||
dsp/fftengine.cpp\
|
||||
dsp/kissengine.cpp\
|
||||
dsp/fftfilt.cxx\
|
||||
@ -97,6 +107,8 @@ HEADERS += mainwindow.h\
|
||||
dsp/dspcommands.h\
|
||||
dsp/dspengine.h\
|
||||
dsp/dspdeviceengine.h\
|
||||
dsp/dvserialengine.h\
|
||||
dsp/dvserialworker.h\
|
||||
dsp/dsptypes.h\
|
||||
dsp/fftengine.h\
|
||||
dsp/fftfilt.h\
|
||||
@ -174,5 +186,7 @@ FORMS += mainwindow.ui\
|
||||
|
||||
RESOURCES = resources/res.qrc
|
||||
|
||||
LIBS += -L../serialdv/$${build_subdir} -lserialdv
|
||||
|
||||
CONFIG(ANDROID):CONFIG += mobility
|
||||
CONFIG(ANDROID):MOBILITY =
|
||||
|
Loading…
Reference in New Issue
Block a user