mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-19 06:41:47 -05:00
Windows build: added .pro files for the rest of channel plugins
This commit is contained in:
parent
ef9dbefe50
commit
7f27e8f1c3
39
plugins/channel/demodbfm/demodbfm.pro
Normal file
39
plugins/channel/demodbfm/demodbfm.pro
Normal 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
|
31
plugins/channel/demodlora/demodlora.pro
Normal file
31
plugins/channel/demodlora/demodlora.pro
Normal 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
|
31
plugins/channel/demodnfm/demodnfm.pro
Normal file
31
plugins/channel/demodnfm/demodnfm.pro
Normal 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
|
31
plugins/channel/demodssb/demodssb.pro
Normal file
31
plugins/channel/demodssb/demodssb.pro
Normal 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
|
31
plugins/channel/demodwfm/demodwfm.pro
Normal file
31
plugins/channel/demodwfm/demodwfm.pro
Normal 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
|
31
plugins/channel/tcpsrc/tcpsrc.pro
Normal file
31
plugins/channel/tcpsrc/tcpsrc.pro
Normal 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
|
31
plugins/channel/udpsrc/udpsrc.pro
Normal file
31
plugins/channel/udpsrc/udpsrc.pro
Normal 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
|
Loading…
Reference in New Issue
Block a user