-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfilecase.pro
More file actions
199 lines (179 loc) · 5.42 KB
/
filecase.pro
File metadata and controls
199 lines (179 loc) · 5.42 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If the name defined in TARGET is changed, the following must be done
# to match the new name:
# - the corresponding QML filename must be adapted
# - the desktop icon filename must be adapted
# - the name of the `.desktop` file must be adapted
# - the icon definition filename in `.desktop` file must be adapted
# - the original translation strings `.ts` filename has to be adapted
# The name of your application; should default to the name of the project file,
# see https://doc.qt.io/qt-5/qmake-common-projects.html#building-an-application
TARGET = filecase
CONFIG += sailfishapp
QT += core xml
DEFINES += QWEBDAVITEM_EXTENDED_PROPERTIES DEBUG_WEBDAV
DEFINES += VERSION=\\\"$${VERSION}\\\"
# SOURCE FILES
SOURCES += \
src/filecase.cpp \
src/browser.cpp \
src/config.cpp \
src/qtfilecopier.cpp \
src/utils.cpp \
src/filedeleter.cpp \
src/fileinfo.cpp \
src/loader.cpp \
src/thumbgenerator.cpp \
src/clipboard.cpp \
src/search.cpp \
src/driveclient.cpp \
src/drivethumbnailer.cpp \
src/drive/jsonparser.cpp \
src/drive/json.cpp \
src/dropboxclient.cpp \
src/dropboxthumbnailer.cpp \
src/dropbox/common.cpp \
src/dropbox/consumerdata.cpp \
src/dropbox/dropbox.cpp \
src/dropbox/dropoauth.cpp \
src/dropbox/userdata.cpp \
src/dropbox/util.cpp \
src/skyclient.cpp \
src/skythumbnailer.cpp \
src/compressedfiles.cpp \
src/utilities.cpp \
src/webdav.cpp \
src/qwebdavlib/qnaturalsort.cpp \
src/qwebdavlib/qwebdav.cpp \
src/qwebdavlib/qwebdavdirparser.cpp \
src/qwebdavlib/qwebdavitem.cpp \
src/transfers.cpp \
src/boxclient.cpp \
src/boxthumbnailer.cpp
# These two files exist, but are missing here:
# - For `src/dropbox/qt-json/json.cpp` see issue #111.
# - For `src/megacli.cpp` see issue #112.
# OTHER FILES
OTHER_FILES += \
rpm/filecase.spec \
rpm/filecase.rpmlintrc \
rpm/filecase.changes \
translations/*.ts \
filecase.desktop \
qml/filecase.qml \
qml/pages/MainPage.qml \
qml/pages/CoverPage.qml \
qml/pages/MyHeader.qml \
qml/pages/Settings.qml \
qml/pages/FileInfo.qml \
qml/pages/ValueItem.qml \
qml/pages/RenameFile.qml \
qml/pages/ClipboardPage.qml \
qml/pages/Banner.qml \
qml/pages/NewFolder.qml \
qml/pages/FoldersPanel.qml \
qml/pages/FileDelegate.qml \
qml/pages/FolderDelegate.qml \
qml/pages/SelectLanguage.qml \
qml/pages/SearchPage.qml \
qml/pages/Drive.qml \
qml/pages/DriveSettings.qml \
qml/pages/DriveUploadFolder.qml \
qml/pages/TransfersDelegate.qml \
qml/pages/SelDownloadFolder.qml \
qml/pages/UploadFiles.qml \
qml/pages/Dropbox.qml \
qml/pages/DropboxSettings.qml \
qml/pages/DropboxUploadFolder.qml \
qml/pages/SkyDrive.qml \
qml/pages/SkySettings.qml \
qml/pages/SkyUploadFolder.qml \
qml/pages/TransfersPage.qml \
qml/pages/ButtonHeader.qml \
qml/pages/Compressed.qml \
qml/pages/ExtractDialog.qml \
qml/pages/CompressDialog.qml \
qml/pages/WebDavPage.qml \
qml/pages/WebDavSettings.qml \
qml/pages/WebDavUploadFolder.qml \
qml/pages/AddWebDavAccount.qml \
qml/pages/AddAccount.qml \
qml/pages/Box.qml \
qml/pages/BoxSettings.qml \
qml/pages/BoxUploadFolder.qml \
qml/pages/TextViewer.qml \
qml/pages/TextEditor.qml \
qml/pages/AboutPage.qml
# These three files exist, but are missing here: Why?
# qml/pages/DriveTransfers.qml
# qml/pages/DropboxTransfers.qml
# qml/pages/SkyTransfers.qml
# This question is tracked in issue #113.
# TRANSLATIONS
# To disable building translations every time,
# comment out the following CONFIG line:
CONFIG += sailfishapp_i18n
TRANSLATIONS += \
translations/ca.ts \
translations/de.ts \
translations/es.ts \
translations/et.ts \
translations/fa.ts \
translations/fi.ts \
translations/fr.ts \
translations/it.ts \
translations/nl.ts \
translations/ru.ts \
translations/sv.ts \
translations/zh.ts \
translations/zh_HK.ts \
translations/zh_TW.ts
# To be added when the Polish translation is submitted at Transifex:
# translations/pl.ts \
# HEADER FILES
HEADERS += \
src/browser.h \
src/config.h \
src/qtfilecopier.h \
src/utils.h \
src/filedeleter.h \
src/fileinfo.h \
src/loader.h \
src/thumbgenerator.h \
src/clipboard.h \
src/search.h \
src/driveclient.h \
src/drivethumbnailer.h \
src/drive/jsonparser.h \
src/drive/json.h \
src/dropboxclient.h \
src/dropboxthumbnailer.h \
src/dropbox/common.h \
src/dropbox/consumerdata.h \
src/dropbox/dropbox.h \
src/dropbox/dropoauth.h \
src/dropbox/userdata.h \
src/dropbox/util.h \
src/skyclient.h \
src/skythumbnailer.h \
src/compressedfiles.h \
src/utilities.h \
src/webdav.h \
src/qwebdavlib/qnaturalsort.h \
src/qwebdavlib/qwebdav.h \
src/qwebdavlib/qwebdav_global.h \
src/qwebdavlib/qwebdavdirparser.h \
src/qwebdavlib/qwebdavitem.h \
src/transfers.h \
src/boxclient.h \
src/boxthumbnailer.h
# These are the two extant header files which correspond to
# the two aforementioned, equally undeclared `.cpp` files:
# - For `src/dropbox/qt-json/json.h` see issue #111.
# - For `src/megacli.h` see issue #112.
# ICONS
icons.files = icons
icons.path = /usr/share/$$TARGET
INSTALLS += icons