DSD demod: serialDV library support in Windows

This commit is contained in:
Edouard Griffiths 2016-05-09 13:01:19 +02:00
parent 7e4c05417a
commit 7fe5716e90
2 changed files with 27 additions and 0 deletions

View File

@ -16,6 +16,7 @@ SUBDIRS += libairspy
SUBDIRS += libbladerf
SUBDIRS += mbelib
SUBDIRS += dsdcc
SUBDIRS += serialdv
SUBDIRS += plugins/samplesource/filesource
CONFIG(MINGW64)SUBDIRS += plugins/samplesource/sdrdaemon
SUBDIRS += plugins/samplesource/rtlsdr

26
serialdv/serialdv.pro Normal file
View 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