blob: c74960bfd03d9fd825be8c9ad32e9ba2928b9337 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/covermanager
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libcovermanager.so
RESOURCES = translations/translations.qrc \
images/cm_images.qrc
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += covermanagerfactory.h \
coverwidget.h \
covermanager.h
SOURCES += covermanagerfactory.cpp \
coverwidget.cpp \
covermanager.cpp
QT += network
LIBS += -lqmmpui
|