blob: 7163b2846b49bf5f626ad10bdc6e97e1206f4ebd (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# ???? ?????? ? KDevelop ?????????? qmake.
# -------------------------------------------
# ?????????? ???????????? ???????? ???????? ???????: ./src
# ???? - ??????????: ../bin/mp3player
include(../../qmmp.pri)
FORMS += ./forms/configdialog.ui \
./forms/preseteditor.ui \
./forms/jumptotrackdialog.ui \
./forms/aboutdialog.ui \
./forms/addurldialog.ui
HEADERS += mainwindow.h \
fileloader.h \
button.h \
display.h \
skin.h \
titlebar.h \
positionbar.h \
number.h \
playlist.h \
mediafile.h \
listwidget.h \
playlistmodel.h \
pixmapwidget.h \
playlisttitlebar.h \
configdialog.h \
playlistslider.h \
dock.h \
eqwidget.h \
eqtitlebar.h \
eqslider.h \
togglebutton.h \
eqgraph.h \
mainvisual.h \
inlines.h \
fft.h \
logscale.h \
textscroller.h \
monostereo.h \
playstatus.h \
pluginitem.h \
volumebar.h \
balancebar.h \
playstate.h \
symboldisplay.h \
playlistformat.h \
playlistcontrol.h \
version.h \
qmmpstarter.h \
eqpreset.h \
preseteditor.h \
jumptotrackdialog.h \
aboutdialog.h \
timeindicator.h \
keyboardmanager.h \
filedialog.h \
unixdomainsocket.h \
commandlineoption.h \
addurldialog.h \
skinreader.h \
visualmenu.h \
titlebarcontrol.h \
shadedvisual.h \
shadedbar.h
SOURCES += mainwindow.cpp \
mp3player.cpp \
fileloader.cpp \
button.cpp \
display.cpp \
skin.cpp \
titlebar.cpp \
positionbar.cpp \
number.cpp \
playlist.cpp \
mediafile.cpp \
listwidget.cpp \
playlistmodel.cpp \
pixmapwidget.cpp \
playlisttitlebar.cpp \
configdialog.cpp \
playlistslider.cpp \
dock.cpp \
eqwidget.cpp \
eqtitlebar.cpp \
eqslider.cpp \
togglebutton.cpp \
eqgraph.cpp \
mainvisual.cpp \
fft.c \
logscale.cpp \
textscroller.cpp \
monostereo.cpp \
playstatus.cpp \
pluginitem.cpp \
volumebar.cpp \
balancebar.cpp \
playstate.cpp \
symboldisplay.cpp \
playlistformat.cpp \
playlistcontrol.cpp \
qmmpstarter.cpp \
eqpreset.cpp \
preseteditor.cpp \
jumptotrackdialog.cpp \
aboutdialog.cpp \
timeindicator.cpp \
keyboardmanager.cpp \
filedialog.cpp \
unixdomainsocket.cpp \
commandlineoption.cpp \
addurldialog.cpp \
skinreader.cpp \
visualmenu.cpp \
titlebarcontrol.cpp \
shadedvisual.cpp \
shadedbar.cpp
#Some conf to redirect intermediate stuff in separate dirs
UI_DIR=./.build/ui/
MOC_DIR=./.build/moc/
OBJECTS_DIR=./.build/obj
QT += network xml
TARGET = ../../bin/qmmp
CONFIG += thread release \
warn_on
QMAKE_LIBDIR += ../../lib qmmpui
LIBS += -Wl,-rpath,../lib
LIBS += -L../../lib -lqmmp -lqmmpui
INCLUDEPATH += ../
RESOURCES = images/images.qrc \
stuff.qrc
TEMPLATE = app
target.path = /bin
INSTALLS += target
RESOURCES += translations/qmmp_locales.qrc
TRANSLATIONS = translations/qmmp_ru.ts \
translations/qmmp_tr.ts \
translations/qmmp_zh_CN.ts \
translations/qmmp_cs.ts \
translations/qmmp_pt_BR.ts \
translations/qmmp_uk_UA.ts \
translations/qmmp_zh_TW.ts \
translations/qmmp_de.ts
|