blob: 5d456e327e01aa7bbfc60313c951c3f1a12616f8 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/scrobbler
QT += network
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
RESOURCES = translations/translations.qrc
LIBS += -lqmmpui
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
|