mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-31 21:12:28 -04:00
Windows build: added AM demod plugin
This commit is contained in:
parent
4eeac640cc
commit
7fa519e39f
@ -11,8 +11,8 @@ TEMPLATE = app
|
|||||||
TARGET = sdrangel
|
TARGET = sdrangel
|
||||||
INCLUDEPATH += $$PWD/../sdrbase
|
INCLUDEPATH += $$PWD/../sdrbase
|
||||||
|
|
||||||
CONFIG(release): build_subdir = release
|
CONFIG(Release):build_subdir = release
|
||||||
CONFIG(debug): build_subdir = debug
|
CONFIG(Debug):build_subdir = debug
|
||||||
|
|
||||||
SOURCES += main.cpp
|
SOURCES += main.cpp
|
||||||
LIBS += -L../sdrbase/$${build_subdir} -lsdrbase
|
LIBS += -L../sdrbase/$${build_subdir} -lsdrbase
|
||||||
|
34
plugins/channel/am/am.pro
Normal file
34
plugins/channel/am/am.pro
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
#--------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Pro file for Android and Windows builds with Qt Creator
|
||||||
|
#
|
||||||
|
#--------------------------------------------------------
|
||||||
|
|
||||||
|
TEMPLATE = lib
|
||||||
|
CONFIG += plugin
|
||||||
|
|
||||||
|
QT += core gui widgets multimedia
|
||||||
|
|
||||||
|
TARGET = demodam
|
||||||
|
INCLUDEPATH += $$PWD
|
||||||
|
INCLUDEPATH += ../../../sdrbase
|
||||||
|
|
||||||
|
CONFIG(Release):build_subdir = release
|
||||||
|
CONFIG(Debug):build_subdir = debug
|
||||||
|
|
||||||
|
SOURCES += amdemod.cpp\
|
||||||
|
amdemodgui.cpp\
|
||||||
|
amplugin.cpp
|
||||||
|
|
||||||
|
HEADERS += amdemod.h\
|
||||||
|
amdemodgui.h\
|
||||||
|
amplugin.h
|
||||||
|
|
||||||
|
FORMS += amdemodgui.ui
|
||||||
|
|
||||||
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||||
|
|
||||||
|
RESOURCES = ../../../sdrbase/resources/res.qrc
|
||||||
|
|
||||||
|
target.path = ../../../dist/$${build_subdir}/plugins/channel
|
||||||
|
CONFIG(MINGW32):INSTALLS += target
|
@ -1,33 +1,33 @@
|
|||||||
#--------------------------------------------------------
|
#--------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Pro file for Android and Windows builds with Qt Creator
|
# Pro file for Android and Windows builds with Qt Creator
|
||||||
#
|
#
|
||||||
#--------------------------------------------------------
|
#--------------------------------------------------------
|
||||||
|
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
CONFIG += plugin
|
CONFIG += plugin
|
||||||
|
|
||||||
QT += core gui widgets multimedia
|
QT += core gui widgets multimedia
|
||||||
|
|
||||||
TARGET = inputfilesource
|
TARGET = inputfilesource
|
||||||
INCLUDEPATH += $$PWD
|
INCLUDEPATH += $$PWD
|
||||||
INCLUDEPATH += ../../../sdrbase
|
INCLUDEPATH += ../../../sdrbase
|
||||||
|
|
||||||
CONFIG(release): build_subdir = release
|
CONFIG(Release):build_subdir = release
|
||||||
CONFIG(debug): build_subdir = debug
|
CONFIG(Debug):build_subdir = debug
|
||||||
|
|
||||||
SOURCES += filesourcegui.cpp\
|
SOURCES += filesourcegui.cpp\
|
||||||
filesourceinput.cpp\
|
filesourceinput.cpp\
|
||||||
filesourceplugin.cpp\
|
filesourceplugin.cpp\
|
||||||
filesourcethread.cpp
|
filesourcethread.cpp
|
||||||
|
|
||||||
HEADERS += filesourcegui.h\
|
HEADERS += filesourcegui.h\
|
||||||
filesourceinput.h\
|
filesourceinput.h\
|
||||||
filesourceplugin.h\
|
filesourceplugin.h\
|
||||||
filesourcethread.h
|
filesourcethread.h
|
||||||
|
|
||||||
FORMS += filesourcegui.ui
|
FORMS += filesourcegui.ui
|
||||||
|
|
||||||
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||||
|
|
||||||
RESOURCES = ../../../sdrbase/resources/res.qrc
|
RESOURCES = ../../../sdrbase/resources/res.qrc
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
SUBDIRS = sdrbase
|
SUBDIRS = sdrbase
|
||||||
SUBDIRS += plugins/samplesource/filesource
|
SUBDIRS += plugins/samplesource/filesource
|
||||||
|
SUBDIRS += plugins/channel/am
|
||||||
|
|
||||||
# Main app must be last
|
# Main app must be last
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
Loading…
x
Reference in New Issue
Block a user