forked from Michal-Szczepaniak/nanofiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanofiles.pro
57 lines (47 loc) · 1.36 KB
/
nanofiles.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
include(vendor/vendor.pri)
TARGET = nanofiles
QT += widgets
CONFIG += sailfishapp
SOURCES += src/nanofiles.cpp \
src/fileprocess.cpp \
src/filesmanager.cpp \
src/fileengine.cpp \
src/filelist.cpp \
src/clipboard.cpp \
src/util.cpp \
src/worker.cpp
DISTFILES += qml/nanofiles.qml \
qml/components/ErrorDialog.qml \
qml/cover/CoverPage.qml \
qml/js/moment.min.js \
qml/pages/FileInfo.qml \
qml/pages/Main.qml \
qml/pages/About.qml \
qml/pages/Places.qml \
qml/pages/TranslationsPage.qml \
qml/pages/ShareFilesPage.qml \
qml/components/NewFilesDialog.qml \
qml/components/FileRenameDialog.qml \
qml/components/MenuBar.qml \
rpm/nanofiles.spec \
translations/*.ts \
nanofiles.desktop
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
RESOURCES += \
qml/resources/resources.qrc
CONFIG += sailfishapp_i18n
TRANSLATIONS += translations/nanofiles.ts \
translations/nanofiles-es.ts \
translations/nanofiles-hu.ts \
translations/nanofiles-it.ts \
translations/nanofiles-nl.ts \
translations/nanofiles-sv.ts \
translations/nanofiles-zh_CN.ts
HEADERS += \
src/fileprocess.h \
src/filesmanager.h \
src/fileengine.h \
src/filelist.h \
src/clipboard.h \
src/util.h \
src/worker.h