aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Ui/qsui/qsui.pro
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-11 09:08:12 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-11 09:08:12 +0000
commit017d2d27bfbcd97ada407212e925b280ff3482b5 (patch)
tree2a832873a52ee7c8546b6262be58f41d1bdd480e /src/plugins/Ui/qsui/qsui.pro
parent22cf3c55368be9361b43eb002e7a2fb7f2868ac2 (diff)
downloadqmmp-017d2d27bfbcd97ada407212e925b280ff3482b5.tar.gz
qmmp-017d2d27bfbcd97ada407212e925b280ff3482b5.tar.bz2
qmmp-017d2d27bfbcd97ada407212e925b280ff3482b5.zip
added qsui plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5367 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/qsui/qsui.pro')
-rw-r--r--src/plugins/Ui/qsui/qsui.pro117
1 files changed, 117 insertions, 0 deletions
diff --git a/src/plugins/Ui/qsui/qsui.pro b/src/plugins/Ui/qsui/qsui.pro
new file mode 100644
index 000000000..457e11d8d
--- /dev/null
+++ b/src/plugins/Ui/qsui/qsui.pro
@@ -0,0 +1,117 @@
+include(../../plugins.pri)
+
+TARGET = $$PLUGINS_PREFIX/Ui/qsui
+
+CONFIG += warn_on \
+ plugin \
+ link_pkgconfig
+
+TEMPLATE = lib
+
+QT += network
+
+SOURCES += \
+ mainwindow.cpp \
+ listwidget.cpp \
+ visualmenu.cpp \
+ positionslider.cpp \
+ actionmanager.cpp \
+ shortcutdialog.cpp \
+ shortcutitem.cpp \
+ popupsettings.cpp \
+ popupwidget.cpp \
+ equalizer.cpp \
+ logo.cpp \
+ keyboardmanager.cpp \
+ aboutqsuidialog.cpp \
+ qsuifactory.cpp \
+ qsuisettings.cpp \
+ qsuianalyzer.cpp \
+ fft.c \
+ colorwidget.cpp \
+ qsuitabwidget.cpp \
+ qsuitabbar.cpp \
+ eqpreset.cpp \
+ filesystembrowser.cpp \
+ elidinglabel.cpp \
+ coverwidget.cpp \
+ playlistbrowser.cpp \
+ toolbareditor.cpp \
+ listwidgetdrawer.cpp \
+ playlistheader.cpp \
+ hotkeyeditor.cpp
+HEADERS += mainwindow.h \
+ listwidget.h \
+ visualmenu.h \
+ positionslider.h \
+ actionmanager.h \
+ shortcutdialog.h \
+ shortcutitem.h \
+ popupsettings.h \
+ popupwidget.h \
+ equalizer.h \
+ logo.h \
+ keyboardmanager.h \
+ aboutqsuidialog.h \
+ qsuifactory.h \
+ qsuisettings.h \
+ qsuianalyzer.h \
+ fft.h \
+ inlines.h \
+ colorwidget.h \
+ qsuitabwidget.h \
+ qsuitabbar.h \
+ eqpreset.h \
+ filesystembrowser.h \
+ elidinglabel.h \
+ coverwidget.h \
+ playlistbrowser.h \
+ toolbareditor.h \
+ listwidgetdrawer.h \
+ playlistheader.h \
+ hotkeyeditor.h
+TEMPLATE = lib
+
+FORMS += forms/mainwindow.ui \
+ forms/shortcutdialog.ui \
+ forms/popupsettings.ui \
+ forms/aboutqsuidialog.ui \
+ forms/qsuisettings.ui \
+ forms/toolbareditor.ui \
+ forms/hotkeyeditor.ui
+RESOURCES += translations/translations.qrc resources/qsui_resources.qrc txt/qsui_txt.qrc
+
+contains(CONFIG, SVN_VERSION){
+ DEFINES += QMMP_PLUGIN_PACK_VERSION=\\\"$$QMMP_PLUGIN_PACK_VERSION-dev\\\"
+}
+else{
+ DEFINES += QMMP_PLUGIN_PACK_VERSION=\\\"$$QMMP_PLUGIN_PACK_VERSION\\\"
+}
+
+unix {
+ isEmpty(LIB_DIR):LIB_DIR = /lib
+ target.path = $$LIB_DIR/qmmp/Ui
+ INSTALLS += target
+
+ PKGCONFIG += qmmp qmmpui
+ QMAKE_CLEAN = $$PLUGINS_PREFIX/Ui/libqsui.so
+}
+
+win32 {
+ INCLUDEPATH += ../../ ./
+ QMAKE_LIBDIR += ../../../../bin
+ LIBS += -lqmmp0 -lqmmpui0
+}
+
+
+
+
+
+
+
+
+
+
+
+
+