forked from Wunderfitz/harbour-fernweh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
harbour-fernweh.pro
87 lines (68 loc) · 2.48 KB
/
harbour-fernweh.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
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the 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
# - translation filenames have to be changed
# The name of your application
TARGET = harbour-fernweh
CONFIG += sailfishapp sailfishapp_i18n c++11
QT += core network dbus positioning sql quick
include(src/o2/o2.pri)
SOURCES += src/harbour-fernweh.cpp \
src/flickraccount.cpp \
src/flickrapi.cpp \
src/interestingnessmodel.cpp \
src/ownalbumsmodel.cpp \
src/ownphotosmodel.cpp \
src/searchphotosmodel.cpp
DISTFILES += qml/harbour-fernweh.qml \
qml/components/Album.qml \
qml/components/BackgroundProgressIndicator.qml \
qml/components/DetailItemStyled.qml \
qml/components/PhotoThumbnail.qml \
qml/pages/*.qml \
qml/components/*.qml \
qml/pages/AlbumPhotosPage.qml \
qml/pages/ImagePage.qml \
qml/pages/ProfilePage.qml \
qml/pages/SettingsPage.qml \
rpm/harbour-fernweh.changes.in \
rpm/harbour-fernweh.spec \
rpm/harbour-fernweh.yaml \
translations/*.ts \
harbour-fernweh.desktop
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 256x256
gui.files = qml
gui.path = /usr/share/$${TARGET}
images.files = images
images.path = /usr/share/$${TARGET}
ICONPATH = /usr/share/icons/hicolor
86.png.path = $${ICONPATH}/86x86/apps/
86.png.files += icons/86x86/harbour-fernweh.png
108.png.path = $${ICONPATH}/108x108/apps/
108.png.files += icons/108x108/harbour-fernweh.png
128.png.path = $${ICONPATH}/128x128/apps/
128.png.files += icons/128x128/harbour-fernweh.png
172.png.path = $${ICONPATH}/172x172/apps/
172.png.files += icons/172x172/harbour-fernweh.png
256.png.path = $${ICONPATH}/256x256/apps/
256.png.files += icons/256x256/harbour-fernweh.png
fernweh.desktop.path = /usr/share/applications/
fernweh.desktop.files = harbour-fernweh.desktop
INSTALLS += 86.png 108.png 128.png 172.png 256.png \
fernweh.desktop gui images
TRANSLATIONS += translations/harbour-fernweh-de.ts \
translations/harbour-fernweh-sv.ts \
translations/harbour-fernweh-zh_CN.ts
HEADERS += \
src/flickraccount.h \
src/flickrapi.h \
src/interestingnessmodel.h \
src/ownalbumsmodel.h \
src/ownphotosmodel.h \
src/searchphotosmodel.h