blob: 9355db69209105632675224f5e2e91b7cabba7a0 (
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
|
# ???? ?????? ? KDevelop ?????????? qmake.
# -------------------------------------------
# ?????????? ???????????? ???????? ???????? ???????: ./src
# ???? - ??????????: ../bin/mp3player
include(../qmmp.pri)
FORMS += configdialog.ui \
preseteditor.ui \
jumptotrackdialog.ui \
aboutdialog.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
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
contains(CONFIG,XSPF_PLUGIN){
message(*********************************************)
message(* XSPF support will be compiled as plugin *)
message(*********************************************)
DEFINES += XSPF_PLUGIN
}else {
DEFINES -= XSPF_PLUGIN
message(*******************************************)
message(* XSPF support will be compiled in QMMP *)
message(*******************************************)
QT += xml
}
QT += network
TARGET = ../bin/qmmp
CONFIG += thread release \
warn_on
QMAKE_LIBDIR += ../lib
LIBS += -Wl,-rpath,../lib -lqmmp
INCLUDEPATH += ../lib
RESOURCES = images/images.qrc \
stuff.qrc
# translations/qmmp_locales.qrc
#TRANSLATIONS = translations/qmmp_ru.ts \
# translations/qmmp_tr.ts \
# translations/qmmp_zh_CN.ts
TEMPLATE = app
target.path = /bin
INSTALLS += target
HEADERS += addurldialog.h \
skinreader.h
SOURCES += addurldialog.cpp \
skinreader.cpp
FORMS += addurldialog.ui
|