mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
47 lines
1.0 KiB
Prolog
47 lines
1.0 KiB
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia opengl
|
|
|
|
TARGET = inputairspy
|
|
|
|
CONFIG(MINGW32):LIBAIRSPYSRC = "D:\softs\libairspy"
|
|
CONFIG(MINGW64):LIBAIRSPYSRC = "D:\softs\libairspy"
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += ../../../sdrbase
|
|
INCLUDEPATH += $$LIBAIRSPYSRC
|
|
|
|
DEFINES += LIBAIRSPY_DYN_RATES
|
|
DEFINES += USE_SSE2=1
|
|
QMAKE_CXXFLAGS += -msse2
|
|
DEFINES += USE_SSE4_1=1
|
|
QMAKE_CXXFLAGS += -msse4.1
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
SOURCES += airspygui.cpp\
|
|
airspyinput.cpp\
|
|
airspyplugin.cpp\
|
|
airspysettings.cpp\
|
|
airspythread.cpp
|
|
|
|
HEADERS += airspygui.h\
|
|
airspyinput.h\
|
|
airspyplugin.h\
|
|
airspysettings.h\
|
|
airspythread.h
|
|
|
|
FORMS += airspygui.ui
|
|
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
|
LIBS += -L../../../libairspy/$${build_subdir} -llibairspy
|
|
|
|
RESOURCES = ../../../sdrbase/resources/res.qrc
|