mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
36 lines
818 B
Prolog
36 lines
818 B
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia opengl
|
|
|
|
TARGET = chanalyzer
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += ../../../sdrbase
|
|
|
|
CONFIG(ANDROID):INCLUDEPATH += /opt/softs/boost_1_60_0
|
|
CONFIG(MINGW32):INCLUDEPATH += "D:\boost_1_58_0"
|
|
CONFIG(MINGW64):INCLUDEPATH += "D:\boost_1_58_0"
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
SOURCES += chanalyzer.cpp\
|
|
chanalyzergui.cpp\
|
|
chanalyzerplugin.cpp
|
|
|
|
HEADERS += chanalyzer.h\
|
|
chanalyzergui.h\
|
|
chanalyzerplugin.h
|
|
|
|
FORMS += chanalyzergui.ui
|
|
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
|
|
|
RESOURCES = ../../../sdrbase/resources/res.qrc
|