blob: 812f9c9d1de3b8fa112e3cb31f82545edc567f22 (
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
|
include(../../plugins.pri)
CONFIG += release \
warn_on \
plugin \
lib
TARGET =$$PLUGINS_PREFIX/PlaylistFormats/plsplaylistformat
QMAKE_CLEAN =$$PLUGINS_PREFIX/PlaylistFormats/plsplaylistformat.so
TEMPLATE = lib
QMAKE_LIBDIR += ../../../../lib
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/PlaylistFormats
INSTALLS += target
INCLUDEPATH += ../../../../src
LIBS += -lqmmpui
SOURCES += plsplaylistformat.cpp
HEADERS += plsplaylistformat.h
|