mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
b743943c70
Project files with MacOS clang RPATH to use proper paths for shared objects. Minor path updates in favor of loading plugin libs. Deployment script packaging using Qt way(macdeployqt).
53 lines
1.2 KiB
Prolog
53 lines
1.2 KiB
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Android and Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia
|
|
|
|
TARGET = demodam
|
|
|
|
DEFINES += USE_SSE2=1
|
|
QMAKE_CXXFLAGS += -msse2
|
|
DEFINES += USE_SSE4_1=1
|
|
QMAKE_CXXFLAGS += -msse4.1
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
|
|
INCLUDEPATH += $$PWD
|
|
INCLUDEPATH += ../../../exports
|
|
INCLUDEPATH += ../../../sdrbase
|
|
INCLUDEPATH += ../../../sdrgui
|
|
INCLUDEPATH += ../../../swagger/sdrangel/code/qt5/client
|
|
|
|
CONFIG(Release):build_subdir = release
|
|
CONFIG(Debug):build_subdir = debug
|
|
|
|
SOURCES += amdemod.cpp\
|
|
amdemodgui.cpp\
|
|
amdemodplugin.cpp\
|
|
amdemodsettings.cpp\
|
|
amdemodssbdialog.cpp
|
|
|
|
HEADERS += amdemod.h\
|
|
amdemodgui.h\
|
|
amdemodplugin.h\
|
|
amdemodsettings.h\
|
|
amdemodssbdialog.h
|
|
|
|
FORMS += amdemodgui.ui\
|
|
amdemodssb.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
|