diff --git a/app/app.pro b/app/app.pro index a29d94a6d..3f1f6e185 100644 --- a/app/app.pro +++ b/app/app.pro @@ -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 diff --git a/plugins/channel/am/am.pro b/plugins/channel/am/am.pro new file mode 100644 index 000000000..c0d6066c7 --- /dev/null +++ b/plugins/channel/am/am.pro @@ -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 diff --git a/plugins/samplesource/filesource/filesource.pro b/plugins/samplesource/filesource/filesource.pro index 0d960808c..c09b49f24 100644 --- a/plugins/samplesource/filesource/filesource.pro +++ b/plugins/samplesource/filesource/filesource.pro @@ -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 diff --git a/sdrangel.windows.pro b/sdrangel.windows.pro index 15c106429..49cb2f6a5 100644 --- a/sdrangel.windows.pro +++ b/sdrangel.windows.pro @@ -7,6 +7,7 @@ TEMPLATE = subdirs SUBDIRS = sdrbase SUBDIRS += plugins/samplesource/filesource +SUBDIRS += plugins/channel/am # Main app must be last CONFIG += ordered