blob: 28ba5b736b545a4112cb972fb16d813383469048 (
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
|
include(../../plugins.pri)
CONFIG += warn_on \
plugin \
lib
TARGET =$$PLUGINS_PREFIX/PlayListFormats/xspfplaylistformat
TEMPLATE = lib
SOURCES += xspfplaylistformat.cpp
HEADERS += xspfplaylistformat.h
unix {
target.path = $$LIB_DIR/qmmp/PlayListFormats
INSTALLS += target
QMAKE_CLEAN =$$PLUGINS_PREFIX/PlayListFormats/libxsplaylistformat.so
LIBS += -lqmmpui -lqmmp
}
win32 {
LIBS += -lqmmpui0 -lqmmp0
}
|