Windows build: added .pro files for the rest of channel plugins

This commit is contained in:
f4exb 2016-03-10 02:44:13 +01:00
parent ef9dbefe50
commit 7f27e8f1c3
7 changed files with 225 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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