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