aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Ui/qsui/qsui.pro
diff options
context:
space:
mode:
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
+}
+
+
+
+
+
+
+
+
+
+
+
+
+