1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-06 13:16:33 -04:00
sdrangel/plugins/channel/am/am.pro

35 lines
756 B
Prolog
Raw Normal View History

2016-03-08 18:20:49 -05:00
#--------------------------------------------------------
#
# 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