From 7fe5716e90a0d41604d516e3befe3473bc918463 Mon Sep 17 00:00:00 2001 From: Edouard Griffiths Date: Mon, 9 May 2016 13:01:19 +0200 Subject: [PATCH] DSD demod: serialDV library support in Windows --- sdrangel.windows.pro | 1 + serialdv/serialdv.pro | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 serialdv/serialdv.pro diff --git a/sdrangel.windows.pro b/sdrangel.windows.pro index c0323b23e..ff8e5a2e4 100644 --- a/sdrangel.windows.pro +++ b/sdrangel.windows.pro @@ -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 diff --git a/serialdv/serialdv.pro b/serialdv/serialdv.pro new file mode 100644 index 000000000..a79e9c490 --- /dev/null +++ b/serialdv/serialdv.pro @@ -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