aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/xspf/xspf.pro
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 09:22:05 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 09:22:05 +0000
commitac1f3775990561224c69543f7fbcf31e62fd0109 (patch)
treea7fd000f8536456f3fa1ecefff95b67b074ab49c /src/plugins/PlayListFormats/xspf/xspf.pro
parent979695c9e910cf1138ab6c3747c3f725995acf89 (diff)
downloadqmmp-ac1f3775990561224c69543f7fbcf31e62fd0109.tar.gz
qmmp-ac1f3775990561224c69543f7fbcf31e62fd0109.tar.bz2
qmmp-ac1f3775990561224c69543f7fbcf31e62fd0109.zip
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3085 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/xspf/xspf.pro')
-rw-r--r--src/plugins/PlayListFormats/xspf/xspf.pro36
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
+}
+