diff options
Diffstat (limited to 'src/plugins/PlayListFormats/xspf/xspf.pro')
| -rw-r--r-- | src/plugins/PlayListFormats/xspf/xspf.pro | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/plugins/PlayListFormats/xspf/xspf.pro b/src/plugins/PlayListFormats/xspf/xspf.pro new file mode 100644 index 000000000..28a50ca44 --- /dev/null +++ b/src/plugins/PlayListFormats/xspf/xspf.pro @@ -0,0 +1,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 +} + |
