forked from h3r3x3/XLCloudClient
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CloudClient.pro
97 lines (83 loc) · 2.1 KB
/
CloudClient.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-01-27T19:53:03
#
#-------------------------------------------------
QT += core gui webkit sql network phonon
INCLUDEPATH += src/
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CloudClient
TEMPLATE = app
LIBS += -lqjson
isEmpty (PREFIX) {
PREFIX = /usr
}
message ("Install prefix set to $${PREFIX}")
de.files = CloudClient.desktop
de.path = $${PREFIX}/share/applications
bi.files = CloudClient
bi.path = $${PREFIX}/bin/
icon.files = resources/images/thunder-256.png
icon.path = $${PREFIX}/share/icons/hicolor/256x256/apps/
INSTALLS += de bi icon
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/thundercore.cpp \
src/util.cpp \
src/thunderpanel.cpp \
src/videopanel.cpp \
src/qmpwidget.cpp \
src/mplayer.cpp \
src/logview.cpp \
src/preferencesdlg.cpp \
src/browser.cpp \
src/addcloudtask.cpp \
src/transf0r.cpp \
src/downloader.cpp \
src/downloaderchildwidget.cpp \
src/saycapcha.cpp \
src/fileselectorline.cpp \
src/mediaplayer.cpp \
src/osd.cpp \
src/urllineedit.cpp \
src/searchlineedit.cpp \
src/simpleeditor.cpp \
src/unifiedpage.cpp
HEADERS += src/mainwindow.h \
src/thundercore.h \
src/CloudObject.h \
src/util.h \
src/thunderpanel.h \
src/videopanel.h \
src/qmpwidget.h \
src/mplayer.h \
src/logview.h \
src/preferencesdlg.h \
src/browser.h \
src/addcloudtask.h \
src/transf0r.h \
src/downloaderchildwidget.h \
src/downloader.h \
src/saycapcha.h \
src/fileselectorline.h \
src/mediaplayer.h \
src/osd.h \
src/urllineedit.h \
src/searchlineedit.h \
src/simpleeditor.h \
src/unifiedpage.h \
src/config.h
FORMS += ui/mainwindow.ui \
ui/thunderpanel.ui \
ui/videopanel.ui \
ui/logview.ui \
ui/preferencesdlg.ui \
ui/browser.ui \
ui/addcloudtask.ui \
ui/transf0r.ui \
ui/downloaderchildwidget.ui \
ui/saycapcha.ui \
ui/fileselectorline.ui \
ui/simpleeditor.ui
RESOURCES += \
resources.qrc