mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 16:31:15 -05:00
50 lines
1.1 KiB
Prolog
50 lines
1.1 KiB
Prolog
#--------------------------------------------------------
|
|
#
|
|
# Pro file for Windows builds with Qt Creator
|
|
#
|
|
#--------------------------------------------------------
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
QT += core gui widgets multimedia opengl network
|
|
|
|
TARGET = udpsource
|
|
|
|
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 += udpsource.cpp\
|
|
udpsourcegui.cpp\
|
|
udpsourceplugin.cpp\
|
|
udpsourcemsg.cpp\
|
|
udpsourceudphandler.cpp\
|
|
udpsourcesettings.cpp
|
|
|
|
HEADERS += udpsource.h\
|
|
udpsourcegui.h\
|
|
udpsourceplugin.h\
|
|
udpsourcemsg.h\
|
|
udpsourceudphandler.h\
|
|
udpsourcesettings.h
|
|
|
|
FORMS += udpsourcegui.ui
|
|
|
|
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
|
|
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
|
|
LIBS += -L../../../swagger/$${build_subdir} -lswagger
|
|
|
|
RESOURCES = ../../../sdrgui/resources/res.qrc
|