-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharbour-filetug.pro
83 lines (76 loc) · 2.36 KB
/
harbour-filetug.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
# The name of your app.
# NOTICE: name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, following needs to be
# done to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
TARGET = harbour-filetug
CONFIG += sailfishapp
QT += multimedia
SOURCES += \
src/thumbnailprovider.cpp \
src/settings.cpp \
src/filelist.cpp \
src/iconprovider.cpp \
src/fileengine.cpp \
src/fileinfoentry.cpp \
src/fileinfo.cpp \
src/fileprocess.cpp \
src/worker.cpp \
src/clipboard.cpp \
src/main.cpp \
src/covermodel.cpp \
src/util.cpp \
src/directoryworker.cpp
OTHER_FILES += \
qml/cover/CoverPage.qml \
rpm/harbour-filetug.yaml \
harbour-filetug.desktop \
qml/pages/SettingsPage.qml \
qml/pages/ImageView.qml \
qml/pages/dirView/DirectoryGridView.qml \
qml/js/directoryViewModel.js \
qml/pages/dirView/DirectoryPullDownMenu.qml \
qml/pages/dirView/DirectoryPushUpMenu.qml \
qml/pages/settings/DirectoryViewSettings.qml \
qml/pages/dirView/DirectoryListView.qml \
qml/js/misc.js \
qml/pages/settings/FileOrderSettings.qml \
qml/pages/AboutPage.qml \
qml/pages/fileView/FileInfo.qml \
qml/js/imageView.js \
qml/pages/fileView/AnimatedImageView.qml \
qml/pages/fileView/Image.qml \
qml/pages/fileView/Video.qml \
qml/pages/fileView/Text.qml \
qml/pages/FileOperationPage.qml \
qml/pages/fileView/Audio.qml \
qml/pages/FilePage.qml \
qml/pages/FileRenameDialog.qml \
qml/pages/NewFilesDialog.qml \
qml/pages/settings/FileDisplay.qml \
qml/Filetug.qml \
qml/pages/DirectoryPage.qml \
qml/pages/BackPage.qml \
qml/pages/dirView/DirectoryFileOperations.qml \
qml/pages/fileView/PermissionEdit.qml \
qml/pages/dirView/ShortcutsView.qml \
qml/pages/fileView/TextEdit.qml
HEADERS += \
src/thumbnailprovider.h \
src/settings.h \
src/filelist.h \
src/iconprovider.h \
src/fileengine.h \
src/fileinfoentry.h \
src/fileinfo.h \
src/fileprocess.h \
src/worker.h \
src/clipboard.h \
src/covermodel.h \
src/util.h \
src/directoryworker.h
RESOURCES += \
resources.qrc