-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCuarzoPlayer.pro
129 lines (102 loc) · 2.21 KB
/
CuarzoPlayer.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#-------------------------------------------------
#
# Project created by QtCreator 2017-04-14T14:58:11
#
#-------------------------------------------------
QT += core
QT += multimedia
QT += svg
QT += network
QT += concurrent
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CuarzoPlayer
TEMPLATE = app
ICON = icon.icns
macx {
INCLUDEPATH += "../CuarzoPlayer/lib/mac/library/libtag/include/"
INCLUDEPATH += "../CuarzoPlayer/lib/mac/frameworks/VLCQtCore.framework/Headers/"
LIBS += \
-L$$_PRO_FILE_PWD_/lib/mac/library/libtag/lib \
-L$$_PRO_FILE_PWD_/lib/mac/library/portaudio/lib \
-ltag\
-lportaudio\
-lz\
-lobjc
LIBS += -framework Foundation
LIBS += -framework AppKit
LIBS += -framework VLCQtCore
OBJECTIVE_SOURCES += objectivec.mm
HEADERS += objectivec.h
}
unix:!macx {
INCLUDEPATH += $$_PRO_FILE_PWD_/lib/linux/include/taglib/
INCLUDEPATH += $$_PRO_FILE_PWD_/lib/linux/include/VLCQtCore/
LIBS += \
-L/usr/local/lib \
-L$$_PRO_FILE_PWD_/lib/linux/lib \
-ltag\
-lz\
-lvlc\
-lVLCQtCore
}
win32 {
}
SOURCES += main.cpp\
bottombar.cpp \
playerwindow.cpp \
playerbuttons.cpp \
timebar.cpp \
volumebar.cpp \
library.cpp \
menu.cpp \
searchbar.cpp \
titlebar.cpp \
leftbar.cpp \
leftbaritem.cpp \
artistlistitem.cpp \
albumsong.cpp \
player.cpp \
login.cpp \
googledrive.cpp
HEADERS += \
opbutton.h \
bottombar.h \
croplabel.h \
playerwindow.h \
songinfo.h \
playerbuttons.h \
timebar.h \
volumebar.h \
topbar.h \
library.h \
selectlist.h \
selectlistitem.h \
icon.h \
menu.h \
userpicture.h \
storagebar.h \
searchbar.h \
middleview.h \
titlebar.h \
leftbar.h \
leftbaritem.h \
artistlistitem.h \
pix.h \
artistview.h \
artistviewtitle.h \
album.h \
albumsong.h \
player.h \
login.h \
googledrive.h \
network.h \
maths.h \
pie.h \
filemanager.h \
reply.h \
init.h \
songmenu.h \
tageditor.h \
tableview.h
RESOURCES += \
resources.qrc