blob: ae48d09b1f74fa6ebf3e32f8948def30ecdfa66c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Ui/qsui
CONFIG += warn_on \
plugin
TEMPLATE = lib
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
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
TEMPLATE = lib
unix:QMAKE_LIBDIR += ../../../../lib
unix:LIBS += -lqmmpui -lqmmp
win32:QMAKE_LIBDIR += ../../../../bin
win32:LIBS += -lqmmpui0 -lqmmp0
CONFIG += warn_on \
plugin
TARGET = $$PLUGINS_PREFIX/Ui/qsui
unix{
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Ui
INSTALLS += target
}
INCLUDEPATH += ../../../
|