From 7f27e8f1c3d8cb021fc9973776cea38ae91fbc62 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 10 Mar 2016 02:44:13 +0100 Subject: [PATCH] Windows build: added .pro files for the rest of channel plugins --- plugins/channel/demodbfm/demodbfm.pro | 39 +++++++++++++++++++++++++ plugins/channel/demodlora/demodlora.pro | 31 ++++++++++++++++++++ plugins/channel/demodnfm/demodnfm.pro | 31 ++++++++++++++++++++ plugins/channel/demodssb/demodssb.pro | 31 ++++++++++++++++++++ plugins/channel/demodwfm/demodwfm.pro | 31 ++++++++++++++++++++ plugins/channel/tcpsrc/tcpsrc.pro | 31 ++++++++++++++++++++ plugins/channel/udpsrc/udpsrc.pro | 31 ++++++++++++++++++++ 7 files changed, 225 insertions(+) create mode 100644 plugins/channel/demodbfm/demodbfm.pro create mode 100644 plugins/channel/demodlora/demodlora.pro create mode 100644 plugins/channel/demodnfm/demodnfm.pro create mode 100644 plugins/channel/demodssb/demodssb.pro create mode 100644 plugins/channel/demodwfm/demodwfm.pro create mode 100644 plugins/channel/tcpsrc/tcpsrc.pro create mode 100644 plugins/channel/udpsrc/udpsrc.pro diff --git a/plugins/channel/demodbfm/demodbfm.pro b/plugins/channel/demodbfm/demodbfm.pro new file mode 100644 index 000000000..073c790a5 --- /dev/null +++ b/plugins/channel/demodbfm/demodbfm.pro @@ -0,0 +1,39 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia opengl + +TARGET = demodbfm +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += bfmdemod.cpp\ + bfmdemodgui.cpp\ + bfmplugin.cpp\ + rdsdemod.cpp\ + rdsdecoder.cpp\ + rdsparser.cpp\ + rdstmc.cpp + +HEADERS += bfmdemod.h\ + bfmdemodgui.h\ + bfmplugin.h\ + rdsdemod.h\ + rdsdecoder.h\ + rdsparser.h\ + rdstmc.h + +FORMS += bfmdemodgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/demodlora/demodlora.pro b/plugins/channel/demodlora/demodlora.pro new file mode 100644 index 000000000..7f58b5e82 --- /dev/null +++ b/plugins/channel/demodlora/demodlora.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia opengl + +TARGET = demodlora +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += lorademod.cpp\ + lorademodgui.cpp\ + loraplugin.cpp + +HEADERS += lorademod.h\ + lorademodgui.h\ + loraplugin.h + +FORMS += lorademodgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/demodnfm/demodnfm.pro b/plugins/channel/demodnfm/demodnfm.pro new file mode 100644 index 000000000..64bc7adc8 --- /dev/null +++ b/plugins/channel/demodnfm/demodnfm.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia + +TARGET = demodnfm +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += nfmdemod.cpp\ + nfmdemodgui.cpp\ + nfmplugin.cpp + +HEADERS += nfmdemod.h\ + nfmdemodgui.h\ + nfmplugin.h + +FORMS += nfmdemodgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/demodssb/demodssb.pro b/plugins/channel/demodssb/demodssb.pro new file mode 100644 index 000000000..4a4931bec --- /dev/null +++ b/plugins/channel/demodssb/demodssb.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia opengl + +TARGET = demodssb +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += ssbdemod.cpp\ + ssbdemodgui.cpp\ + ssbplugin.cpp + +HEADERS += ssbdemod.h\ + ssbdemodgui.h\ + ssbplugin.h + +FORMS += ssbdemodgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/demodwfm/demodwfm.pro b/plugins/channel/demodwfm/demodwfm.pro new file mode 100644 index 000000000..b3efa2b09 --- /dev/null +++ b/plugins/channel/demodwfm/demodwfm.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia + +TARGET = demodwfm +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += wfmdemod.cpp\ + wfmdemodgui.cpp\ + wfmplugin.cpp + +HEADERS += wfmdemod.h\ + wfmdemodgui.h\ + wfmplugin.h + +FORMS += wfmdemodgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/tcpsrc/tcpsrc.pro b/plugins/channel/tcpsrc/tcpsrc.pro new file mode 100644 index 000000000..f40ada394 --- /dev/null +++ b/plugins/channel/tcpsrc/tcpsrc.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia network + +TARGET = tcpsrc +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += tcpsrc.cpp\ + tcpsrcgui.cpp\ + tcpsrcplugin.cpp + +HEADERS += tcpsrc.h\ + tcpsrcgui.h\ + tcpsrcplugin.h + +FORMS += tcpsrcgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc diff --git a/plugins/channel/udpsrc/udpsrc.pro b/plugins/channel/udpsrc/udpsrc.pro new file mode 100644 index 000000000..bc4446555 --- /dev/null +++ b/plugins/channel/udpsrc/udpsrc.pro @@ -0,0 +1,31 @@ +#-------------------------------------------------------- +# +# Pro file for Android and Windows builds with Qt Creator +# +#-------------------------------------------------------- + +TEMPLATE = lib +CONFIG += plugin + +QT += core gui widgets multimedia network + +TARGET = udpsrc +INCLUDEPATH += $$PWD +INCLUDEPATH += ../../../sdrbase + +CONFIG(Release):build_subdir = release +CONFIG(Debug):build_subdir = debug + +SOURCES += udpsrc.cpp\ + udpsrcgui.cpp\ + udpsrcplugin.cpp + +HEADERS += udpsrc.h\ + udpsrcgui.h\ + udpsrcplugin.h + +FORMS += udpsrcgui.ui + +LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase + +RESOURCES = ../../../sdrbase/resources/res.qrc