mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
DSD demod: serialDV library support in Windows
This commit is contained in:
parent
7e4c05417a
commit
7fe5716e90
@ -16,6 +16,7 @@ SUBDIRS += libairspy
|
|||||||
SUBDIRS += libbladerf
|
SUBDIRS += libbladerf
|
||||||
SUBDIRS += mbelib
|
SUBDIRS += mbelib
|
||||||
SUBDIRS += dsdcc
|
SUBDIRS += dsdcc
|
||||||
|
SUBDIRS += serialdv
|
||||||
SUBDIRS += plugins/samplesource/filesource
|
SUBDIRS += plugins/samplesource/filesource
|
||||||
CONFIG(MINGW64)SUBDIRS += plugins/samplesource/sdrdaemon
|
CONFIG(MINGW64)SUBDIRS += plugins/samplesource/sdrdaemon
|
||||||
SUBDIRS += plugins/samplesource/rtlsdr
|
SUBDIRS += plugins/samplesource/rtlsdr
|
||||||
|
26
serialdv/serialdv.pro
Normal file
26
serialdv/serialdv.pro
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#--------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Pro file for Windows builds with Qt Creator
|
||||||
|
#
|
||||||
|
#--------------------------------------------------------
|
||||||
|
|
||||||
|
QT += core
|
||||||
|
|
||||||
|
TEMPLATE = lib
|
||||||
|
TARGET = serialdv
|
||||||
|
|
||||||
|
CONFIG(MINGW32):LIBSERIALDVSRC = "D:\softs\serialDV"
|
||||||
|
CONFIG(MINGW64):LIBSERIALDVSRC = "D:\softs\serialDV"
|
||||||
|
|
||||||
|
INCLUDEPATH += $$LIBSERIALDVSRC
|
||||||
|
|
||||||
|
DEFINES += __WINDOWS__=1
|
||||||
|
|
||||||
|
CONFIG(Release):build_subdir = release
|
||||||
|
CONFIG(Debug):build_subdir = debug
|
||||||
|
|
||||||
|
SOURCES = $$LIBSERIALDVSRC/dvcontroller.cpp\
|
||||||
|
$$LIBSERIALDVSRC/serialdatacontroller.cpp
|
||||||
|
|
||||||
|
HEADERS = $$LIBSERIALDVSRC/dvcontroller.h\
|
||||||
|
$$LIBSERIALDVSRC/serialdatacontroller.h
|
Loading…
Reference in New Issue
Block a user