sdrangel/plugins/samplesource/hackrfinput/hackrfinput.pro

50 lines
1.2 KiB
Prolog
Raw Normal View History

2016-03-12 18:34:46 -05:00
#--------------------------------------------------------
#
# Pro file for Android and Windows builds with Qt Creator
#
#--------------------------------------------------------
TEMPLATE = lib
CONFIG += plugin
2016-05-24 20:33:50 -04:00
QT += core gui widgets multimedia opengl
2016-03-12 18:34:46 -05:00
TARGET = inputhackrf
DEFINES += USE_SSE2=1
QMAKE_CXXFLAGS += -msse2
DEFINES += USE_SSE4_1=1
QMAKE_CXXFLAGS += -msse4.1
2016-03-12 18:34:46 -05:00
CONFIG(MINGW32):LIBHACKRFSRC = "D:\softs\hackrf\host"
CONFIG(MINGW64):LIBHACKRFSRC = "D:\softs\hackrf\host"
2016-03-12 18:34:46 -05:00
INCLUDEPATH += $$PWD
INCLUDEPATH += ../../../sdrbase
2017-01-08 19:31:58 -05:00
INCLUDEPATH += ../../../devices
!macx:INCLUDEPATH += $$LIBHACKRFSRC
macx:INCLUDEPATH += /opt/local/include
2016-03-12 18:34:46 -05:00
CONFIG(Release):build_subdir = release
CONFIG(Debug):build_subdir = debug
SOURCES += hackrfinputgui.cpp\
2016-03-12 18:34:46 -05:00
hackrfinput.cpp\
hackrfinputplugin.cpp\
hackrfinputsettings.cpp\
hackrfinputthread.cpp
2016-03-12 18:34:46 -05:00
HEADERS += hackrfinputgui.h\
2016-03-12 18:34:46 -05:00
hackrfinput.h\
hackrfinputplugin.h\
hackrfinputsettings.h\
hackrfinputthread.h
2016-03-12 18:34:46 -05:00
FORMS += hackrfinputgui.ui
2016-03-12 18:34:46 -05:00
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
!macx:LIBS += -L../../../libhackrf/$${build_subdir} -llibhackrf
macx:LIBS += -L/opt/local/lib -lhackrf
2017-01-08 19:31:58 -05:00
LIBS += -L../../../devices/$${build_subdir} -ldevices
2016-03-12 18:34:46 -05:00
RESOURCES = ../../../sdrbase/resources/res.qrc