mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 09:18:54 -05:00
Windows build: added AM demod plugin
This commit is contained in:
parent
4eeac640cc
commit
7fa519e39f
@ -11,8 +11,8 @@ TEMPLATE = app
|
||||
TARGET = sdrangel
|
||||
INCLUDEPATH += $$PWD/../sdrbase
|
||||
|
||||
CONFIG(release): build_subdir = release
|
||||
CONFIG(debug): build_subdir = debug
|
||||
CONFIG(Release):build_subdir = release
|
||||
CONFIG(Debug):build_subdir = debug
|
||||
|
||||
SOURCES += main.cpp
|
||||
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
|
||||
#
|
||||
#--------------------------------------------------------
|
||||
|
||||
TEMPLATE = lib
|
||||
CONFIG += plugin
|
||||
|
||||
QT += core gui widgets multimedia
|
||||
|
||||
TARGET = inputfilesource
|
||||
INCLUDEPATH += $$PWD
|
||||
INCLUDEPATH += ../../../sdrbase
|
||||
|
||||
CONFIG(release): build_subdir = release
|
||||
CONFIG(debug): build_subdir = debug
|
||||
|
||||
SOURCES += filesourcegui.cpp\
|
||||
filesourceinput.cpp\
|
||||
filesourceplugin.cpp\
|
||||
filesourcethread.cpp
|
||||
|
||||
HEADERS += filesourcegui.h\
|
||||
filesourceinput.h\
|
||||
filesourceplugin.h\
|
||||
filesourcethread.h
|
||||
|
||||
FORMS += filesourcegui.ui
|
||||
|
||||
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||
|
||||
RESOURCES = ../../../sdrbase/resources/res.qrc
|
||||
#--------------------------------------------------------
|
||||
#
|
||||
# Pro file for Android and Windows builds with Qt Creator
|
||||
#
|
||||
#--------------------------------------------------------
|
||||
|
||||
TEMPLATE = lib
|
||||
CONFIG += plugin
|
||||
|
||||
QT += core gui widgets multimedia
|
||||
|
||||
TARGET = inputfilesource
|
||||
INCLUDEPATH += $$PWD
|
||||
INCLUDEPATH += ../../../sdrbase
|
||||
|
||||
CONFIG(Release):build_subdir = release
|
||||
CONFIG(Debug):build_subdir = debug
|
||||
|
||||
SOURCES += filesourcegui.cpp\
|
||||
filesourceinput.cpp\
|
||||
filesourceplugin.cpp\
|
||||
filesourcethread.cpp
|
||||
|
||||
HEADERS += filesourcegui.h\
|
||||
filesourceinput.h\
|
||||
filesourceplugin.h\
|
||||
filesourcethread.h
|
||||
|
||||
FORMS += filesourcegui.ui
|
||||
|
||||
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
||||
|
||||
RESOURCES = ../../../sdrbase/resources/res.qrc
|
||||
|
@ -7,6 +7,7 @@
|
||||
TEMPLATE = subdirs
|
||||
SUBDIRS = sdrbase
|
||||
SUBDIRS += plugins/samplesource/filesource
|
||||
SUBDIRS += plugins/channel/am
|
||||
|
||||
# Main app must be last
|
||||
CONFIG += ordered
|
||||
|
Loading…
Reference in New Issue
Block a user