mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-18 06:11:46 -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 += 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
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