2017-09-28 08:07:41 -04:00
|
|
|
#--------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
|
|
#
|
|
|
|
#--------------------------------------------------------
|
|
|
|
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin
|
|
|
|
|
2019-01-01 09:30:20 -05:00
|
|
|
QT += core gui widgets multimedia opengl
|
2017-09-28 08:07:41 -04:00
|
|
|
|
|
|
|
TARGET = inputfcdproplus
|
|
|
|
|
|
|
|
DEFINES += USE_SSE2=1
|
|
|
|
QMAKE_CXXFLAGS += -msse2
|
|
|
|
DEFINES += USE_SSE4_1=1
|
|
|
|
QMAKE_CXXFLAGS += -msse4.1
|
2019-01-01 09:30:20 -05:00
|
|
|
macx:QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/
|
2017-09-28 08:07:41 -04:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD
|
2019-01-01 09:30:20 -05:00
|
|
|
INCLUDEPATH += ../../../exports
|
2017-09-28 08:07:41 -04:00
|
|
|
INCLUDEPATH += ../../../sdrbase
|
2017-10-22 13:12:43 -04:00
|
|
|
INCLUDEPATH += ../../../sdrgui
|
2019-01-01 09:30:20 -05:00
|
|
|
INCLUDEPATH += ../../../swagger/sdrangel/code/qt5/client
|
2017-09-28 08:07:41 -04:00
|
|
|
INCLUDEPATH += ../../../fcdhid
|
|
|
|
INCLUDEPATH += ../../../fcdlib
|
|
|
|
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
|
|
|
|
SOURCES = fcdproplusgui.cpp\
|
2019-01-01 09:30:20 -05:00
|
|
|
fcdproplusinput.cpp\
|
|
|
|
fcdproplusplugin.cpp\
|
|
|
|
fcdproplussettings.cpp\
|
|
|
|
fcdproplusthread.cpp
|
2017-09-28 08:07:41 -04:00
|
|
|
|
|
|
|
HEADERS = fcdproplusgui.h\
|
2019-01-01 09:30:20 -05:00
|
|
|
fcdproplusinput.h\
|
|
|
|
fcdproplusplugin.h\
|
|
|
|
fcdproplussettings.h\
|
|
|
|
fcdproplusthread.h
|
2017-09-28 08:07:41 -04:00
|
|
|
|
|
|
|
FORMS += fcdproplusgui.ui
|
|
|
|
|
|
|
|
LIBS += -L../../../fcdlib/$${build_subdir} -lfcdlib
|
|
|
|
LIBS += -L../../../fcdhid/$${build_subdir} -lfcdhid
|
|
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
2017-10-22 13:12:43 -04:00
|
|
|
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
|
2019-01-01 09:30:20 -05:00
|
|
|
LIBS += -L../../../swagger/$${build_subdir} -lswagger
|