blob: ab130f465a6de5f5de1b3e29e180de0ef82af9d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
include(../../plugins.pri)
HEADERS += \
mmsinputfactory.h \
mmsinputsource.h \
settingsdialog.h \
mmsstreamreader.h
SOURCES += \
mmsinputfactory.cpp \
mmsinputsource.cpp \
settingsdialog.cpp \
mmsstreamreader.cpp
win32:HEADERS += ../../../../src/qmmp/inputsource.h \
../../../../src/qmmp/inputsourcefactory.h
TARGET = $$PLUGINS_PREFIX/Transports/mms
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libmms.so
CONFIG += warn_on \
plugin \
link_pkgconfig
TEMPLATE = lib
LIBS += -lqmmp -L/usr/lib
PKGCONFIG += libmms
target.path = $$LIB_DIR/qmmp/Transports
INSTALLS += target
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
QMAKE_CFLAGS_ISYSTEM='' #removes "-isystem /usr/include" provided by libmms.pc
|