blob: bab0e0a82e3c34e5a0a205d04dd9e2aca2af1f79 (
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
31
32
33
34
35
36
37
38
39
40
41
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/scrobbler
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libscrobbler.so
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += scrobblerfactory.h \
settingsdialog.h \
scrobblerhandler.h \
scrobblercache.h \
scrobbler.h \
defines.h
SOURCES += scrobblerfactory.cpp \
settingsdialog.cpp \
scrobblerhandler.cpp \
scrobblercache.cpp \
scrobbler.cpp
FORMS += settingsdialog.ui
QT += network
LIBS += -lqmmpui
|