-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQooMusic.pro
105 lines (95 loc) · 3.19 KB
/
QooMusic.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
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
QT += core gui sql
QT += multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11 resources_big
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += color_octree/ \
framelesshelper/ \
loginregister/ \
win_buttons/
SOURCES += \
color_octree/coloroctree.cpp \
color_octree/imageutil.cpp \
desktoplyricwidget.cpp \
framelesshelper/CursorPosCalculator.cpp \
framelesshelper/WidgetData.cpp \
framelesshelper/frameless_helper.cpp \
loginregister/bottomlineedit.cpp \
loginregister/labelededit.cpp \
loginregister/loginregisterdialog.cpp \
main.cpp \
mainwindow.cpp \
music.cpp \
musiclist.cpp \
mymenu.cpp \
noticedialog.cpp \
stringutil.cpp \
tipbox.cpp \
tipcard.cpp \
volumecontrol.cpp \
win_buttons/generalbuttoninterface.cpp \
win_buttons/interactivebuttonbase.cpp \
win_buttons/pointmenubutton.cpp \
win_buttons/threedimenbutton.cpp \
win_buttons/watercirclebutton.cpp \
win_buttons/waterfloatbutton.cpp \
win_buttons/winclosebutton.cpp \
win_buttons/winmaxbutton.cpp \
win_buttons/winmenubutton.cpp \
win_buttons/winminbutton.cpp \
win_buttons/winrestorebutton.cpp \
win_buttons/winsidebarbutton.cpp
HEADERS += \
color_octree/coloroctree.h \
color_octree/imageutil.h \
desktoplyricwidget.h \
framelesshelper/CursorPosCalculator.h \
framelesshelper/FramelessHelperPrivate.h \
framelesshelper/WidgetData.h \
framelesshelper/frameless_helper.h \
loginregister/bottomlineedit.h \
loginregister/labelededit.h \
loginregister/loginregisterdialog.h \
lyricstreamwidget.h \
mainwindow.h \
musicbeans.h \
musiclist.h \
mymenu.h \
netutil.h \
noticedialog.h \
notificationentry.h \
stringutil.h \
tipbox.h \
tipcard.h \
volumecontrol.h \
win_buttons/generalbuttoninterface.h \
win_buttons/interactivebuttonbase.h \
win_buttons/pointmenubutton.h \
win_buttons/threedimenbutton.h \
win_buttons/watercirclebutton.h \
win_buttons/waterfloatbutton.h \
win_buttons/winclosebutton.h \
win_buttons/winmaxbutton.h \
win_buttons/winmenubutton.h \
win_buttons/winminbutton.h \
win_buttons/winrestorebutton.h \
win_buttons/winsidebarbutton.h
FORMS += \
loginregister/loginregisterdialog.ui \
mainwindow.ui \
noticedialog.ui \
volumecontrol.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
icon.qrc