-
Notifications
You must be signed in to change notification settings - Fork 2
/
harbour-mashka.pro
84 lines (71 loc) · 2.18 KB
/
harbour-mashka.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
include(known_apps/known_apps.pri)
TARGET = harbour-mashka
CONFIG += sailfishapp
PKGCONFIG += mlite5
QT += concurrent
SOURCES += \
src/harbour-mashka.cpp \
src/mashka.cpp \
src/mmodel.cpp \
src/mproxymodel.cpp
HEADERS += \
src/knownapp.h \
src/mashka.h \
src/mmodel.h \
src/mproxymodel.h \
src/mentry.h
# Write version file
VERSION_H = \
"$${LITERAL_HASH}ifndef MASHKA_VERSION" \
"$${LITERAL_HASH} define MASHKA_VERSION \"$$VERSION\"" \
"$${LITERAL_HASH}endif"
write_file($$$$OUT_PWD/mashka_version.h, VERSION_H)
CONFIG(release, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT
# If safe_mode is set then Mashka wouldn't really delete files
CONFIG(safe_mode): DEFINES += SAFE_MODE
DISTFILES += \
qml/harbour-mashka.qml \
qml/cover/CoverPage.qml \
qml/pages/MainPage.qml \
qml/pages/EntriesPage.qml \
qml/pages/BannerPage.qml \
qml/pages/ConfirmationDialog.qml \
qml/pages/AboutPage.qml \
qml/pages/SettingsPage.qml \
qml/components/CleanerDashboard.qml \
qml/components/CleanerEntries.qml \
qml/components/RescanMenuEntry.qml \
qml/components/DataLabel.qml \
qml/components/PlainButton.qml \
qml/components/SizeLabel.qml \
qml/components/EntryDelegate.qml \
qml/components/Hint.qml \
qml/components/HintLabel.qml \
qml/components/ListMenuItem.qml \
icons/harbour-mashka.svg \
rpm/harbour-mashka.changes \
rpm/harbour-mashka.yaml \
translations/*.ts \
.tx/config \
harbour-mashka.desktop \
.gitignore \
LICENSE \
README.md
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
CONFIG += \
sailfishapp_i18n \
sailfishapp_i18n_idbased \
sailfishapp_i18n_unfinished
TRANSLATIONS += \
translations/harbour-mashka.ts \
translations/harbour-mashka-de_DE.ts \
translations/harbour-mashka-es.ts \
translations/harbour-mashka-fr.ts \
translations/harbour-mashka-hu.ts \
translations/harbour-mashka-nl_BE.ts \
translations/harbour-mashka-nl.ts \
translations/harbour-mashka-pl.ts \
translations/harbour-mashka-pt_BR.ts \
translations/harbour-mashka-ru.ts \
translations/harbour-mashka-sv.ts \
translations/harbour-mashka-zh_CN.ts