-
Notifications
You must be signed in to change notification settings - Fork 4
/
NeteaseMusicForLinux.pro
52 lines (40 loc) · 1.2 KB
/
NeteaseMusicForLinux.pro
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
TEMPLATE = app
QT += qml quick sql
SOURCES += src/main.cpp \
src/netease_api/neteaseapi.cpp \
src/appcontroller.cpp \
src/song.cpp \
src/playlist_model.cpp \
src/htsettings.cpp \
src/database.cpp
RESOURCES += qml.qrc \
images.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
src/netease_api/neteaseapi.h \
src/appcontroller.h \
src/song.h \
src/playlist_model.h \
src/htsettings.h \
src/database.h
unix {
icon32.files = icons/32x32/NeteaseMusicForLinux.png
icon32.path = /usr/share/icons/hicolor/32x32/apps
icon64.files = icons/64x64/NeteaseMusicForLinux.png
icon64.path = /usr/share/icons/hicolor/64x64/apps
icon128.files = icons/128x128/NeteaseMusicForLinux.png
icon128.path = /usr/share/icons/hicolor/128x128/apps
icon256.files = icons/256x256/NeteaseMusicForLinux.png
icon256.path = /usr/share/icons/hicolor/256x256/apps
}
target.path = /usr/bin/
desktop.files = NeteaseMusicForLinux.desktop
desktop.path = /usr/share/applications
INSTALLS += desktop \
icon32 \
icon64 \
icon128 \
icon256