mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 16:31:15 -05:00
53 lines
1.3 KiB
Prolog
53 lines
1.3 KiB
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia network opengl
|
|
|
|
TARGET = localsource
|
|
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += ../../../exports
|
|
INCLUDEPATH += ../../../sdrbase
|
|
INCLUDEPATH += ../../../sdrgui
|
|
INCLUDEPATH += ../../../swagger/sdrangel/code/qt5/client
|
|
macx:INCLUDEPATH += /opt/local/include
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
CONFIG(MINGW32):INCLUDEPATH += "C:\softs\boost_1_66_0"
|
|
CONFIG(MSVC):INCLUDEPATH += "C:\softs\boost_1_66_0"
|
|
CONFIG(macx):INCLUDEPATH += "../../../../../boost_1_69_0"
|
|
|
|
SOURCES += localsource.cpp\
|
|
localsourcegui.cpp\
|
|
localsourcesettings.cpp\
|
|
localsourceplugin.cpp\
|
|
localsourcethread.cpp
|
|
|
|
HEADERS += localsource.h\
|
|
localsourcegui.h\
|
|
localsourcesettings.h\
|
|
localsourceplugin.h\
|
|
localsourcethread.h
|
|
|
|
FORMS += localsourcegui.ui
|
|
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
|
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
|
|
LIBS += -L../../../swagger/$${build_subdir} -lswagger
|
|
|
|
macx {
|
|
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/
|
|
}
|
|
|
|
RESOURCES = ../../../sdrgui/resources/res.qrc
|
|
|
|
CONFIG(MINGW32):DEFINES += USE_INTERNAL_TIMER=1
|