blob: b07ed85b641b21562e3e7c6dd188d2547f056515 (
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/m3uplaylistformat
TEMPLATE = lib
HEADERS += m3uplaylistformat.h
SOURCES += m3uplaylistformat.cpp
unix {
target.path = $$LIB_DIR/qmmp/PlayListFormats
INSTALLS += target
QMAKE_CLEAN =$$PLUGINS_PREFIX/PlayListFormats/libm3uplaylistformat.so
LIBS += -lqmmpui
}
win32 {
LIBS += -lqmmpui0
}
|