mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 00:11:14 -04:00
39 lines
895 B
Prolog
39 lines
895 B
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia network
|
|
|
|
TARGET = inputfcdproplus
|
|
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += ../../../sdrbase
|
|
INCLUDEPATH += ../../../fcdhid
|
|
INCLUDEPATH += ../../../fcdlib
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
SOURCES = fcdproplusgui.cpp\
|
|
fcdproplusinputqt.cpp\
|
|
fcdproplusplugin.cpp\
|
|
fcdproplussettings.cpp\
|
|
fcdproplusreader.cpp
|
|
|
|
HEADERS = fcdproplusgui.h\
|
|
fcdproplusinputqt.h\
|
|
fcdproplusplugin.h\
|
|
fcdproplussettings.h\
|
|
fcdproplusreader.h
|
|
|
|
FORMS += fcdproplusgui.ui
|
|
|
|
LIBS += -L../../../fcdlib/$${build_subdir} -lfcdlib
|
|
LIBS += -L../../../fcdhid/$${build_subdir} -lfcdhid
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|