-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathCleanPlayer.pro
More file actions
69 lines (55 loc) · 1.38 KB
/
CleanPlayer.pro
File metadata and controls
69 lines (55 loc) · 1.38 KB
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
QT += quick qml network multimedia xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = clean-player
TEMPLATE = app
SOURCES += \
main.cpp \
baidumusic.cpp \
cookiejar.cpp \
util.cpp
OTHER_FILES += \
qml/PlayerControler.qml \
qml/LyricView.qml \
updatesummary.txt \
qml/MainWindow.qml \
qml/TopBar.qml \
data/clean-player.desktop \
data/clean-player.png
RESOURCES += \
res.qrc \
HEADERS += \
baidumusic.h \
cookiejar.h \
util.h
DISTFILES += \
readme.md \
qml/Main.qml \
qml/resource/PlayButton.qml \
qml/resource/PreviousButton.qml \
qml/resource/SearchBar.qml \
qml/resource/SearchResult.qml \
qml/resource/Playlist.qml \
qml/resource/PlaylistView.qml \
qml/resource/TopBar.qml \
qml/resource/Suggestion.qml \
qml/resource/Container.qml \
qml/resource/BottomBar.qml \
qml/resource/SideBar.qml \
qml/resource/Lyric.qml \
qml/resource/utils.js
# icons
icons.files = data/clean-player.png
# desktop
desktop.files = data/clean-player.desktop
isEmpty(INSTALL_PREFIX) {
unix: INSTALL_PREFIX = /usr
else: INSTALL_PREFIX = ..
}
unix: {
desktop.path = $$INSTALL_PREFIX/share/applications
icons.path = $$INSTALL_PREFIX/share/icons/hicolor/64x64/apps
INSTALLS += desktop icons
QMAKE_STRIP=echo
}
target.path = $$INSTALL_PREFIX/bin
INSTALLS += target