blob: 03fe6156cef9b3b43388fd96025b860218bd4677 (
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
include(../../qmmp.pri)
VERSION = $$QMMP_VERSION
INCLUDEPATH += ../
TEMPLATE = lib
QT += network
CONFIG += warn_on \
shared \
qt \
thread
QMAKE_LIBDIR += ../../lib \
qmmpui
LIBS += -Wl,-rpath,./
unix {
TARGET = ../../lib/qmmpui
LIBS += -L../../lib -lqmmp
isEmpty(LIB_DIR):LIB_DIR = /lib
target.path = $$LIB_DIR
}
win32 {
TARGET = ../../../bin/qmmpui
LIBS += -L../../bin -lqmmp0 -lole32
HEADERS += winfileassoc.h \
winfileassocpage_p.h
SOURCES += winfileassoc.cpp \
winfileassocpage.cpp
FORMS += forms/winfileassocpage.ui
}
HEADERS += general.h \
generalfactory.h \
playlistformat.h \
playlistparser.h \
commandlinemanager.h \
commandlineoption.h \
filedialog.h \
filedialogfactory.h \
qtfiledialog_p.h \
playlistitem.h \
playlistmodel.h \
playstate_p.h \
fileloader_p.h \
mediaplayer.h \
detailsdialog.h \
tageditor_p.h \
playlistmanager.h \
metadataformatter.h \
templateeditor.h \
uifactory.h \
uiloader.h \
uihelper.h \
jumptotrackdialog_p.h \
configdialog.h \
pluginitem_p.h \
aboutdialog_p.h \
qmmpuisettings.h \
radioitemdelegate_p.h \
playlistdownloader.h \
addurldialog_p.h \
qmmpuiplugincache_p.h \
tagupdater_p.h \
playlistgroup.h \
playlisttrack.h \
playlistcontainer_p.h \
groupedcontainer_p.h \
normalcontainer_p.h
SOURCES += general.cpp \
playlistparser.cpp \
commandlinemanager.cpp \
filedialog.cpp \
qtfiledialog.cpp \
playlistmodel.cpp \
playstate.cpp \
playlistitem.cpp \
fileloader.cpp \
mediaplayer.cpp \
detailsdialog.cpp \
tageditor.cpp \
playlistmanager.cpp \
metadataformatter.cpp \
templateeditor.cpp \
uiloader.cpp \
uihelper.cpp \
jumptotrackdialog.cpp \
configdialog.cpp \
pluginitem.cpp \
aboutdialog.cpp \
qmmpuisettings.cpp \
radioitemdelegate.cpp \
playlistdownloader.cpp \
addurldialog.cpp \
qmmpuiplugincache.cpp \
tagupdater.cpp \
playlistgroup.cpp \
playlisttrack.cpp \
groupedcontainer.cpp \
normalcontainer.cpp \
playlistcontainer.cpp
FORMS += forms/detailsdialog.ui \
forms/tageditor.ui \
forms/templateeditor.ui \
forms/jumptotrackdialog.ui \
forms/configdialog.ui \
forms/aboutdialog.ui \
forms/addurldialog.ui
unix:DESTDIR = .
RESOURCES += translations/libqmmpui_locales.qrc \
images/qmmpui_images.qrc \
txt/txt.qrc
TRANSLATIONS = translations/libqmmpui_ru.ts \
translations/libqmmpui_tr.ts \
translations/libqmmpui_zh_CN.ts \
translations/libqmmpui_cs.ts \
translations/libqmmpui_pt_BR.ts \
translations/libqmmpui_uk_UA.ts \
translations/libqmmpui_zh_TW.ts \
translations/libqmmpui_de.ts \
translations/libqmmpui_it.ts \
translations/libqmmpui_lt.ts \
translations/libqmmpui_pl_PL.ts \
translations/libqmmpui_nl.ts \
translations/libqmmpui_ja.ts \
translations/libqmmpui_es.ts \
translations/libqmmpui_sk.ts \
translations/libqmmpui_sr_BA.ts \
translations/libqmmpui_sr_RS.ts
unix {
devel.files += general.h \
generalfactory.h \
playlistformat.h \
playlistparser.h \
commandlinemanager.h \
commandlineoption.h \
filedialog.h \
filedialogfactory.h \
playlistitem.h \
playlistmodel.h \
mediaplayer.h \
detailsdialog.h \
playlistmanager.h \
metadataformatter.h \
templateeditor.h \
uifactory.h \
uiloader.h \
uihelper.h \
configdialog.h \
qmmpuisettings.h \
playlistdownloader.h \
playlistgroup.h \
playlisttrack.h
devel.path = /include/qmmpui
INSTALLS += target \
devel
}
unix {
CONFIG += create_pc create_prl no_install_prl
QMAKE_PKGCONFIG_NAME = qmmpui
QMAKE_PKGCONFIG_DESCRIPTION = qmmp user interface library
QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui QtNetwork qmmp
QMAKE_PKGCONFIG_DESTDIR = pkgconfig
}
|