forked from florianwittmann/sailgrande
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathharbour-prostogram.pro
105 lines (94 loc) · 3.65 KB
/
harbour-prostogram.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# 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-prostogram
i18n_files.files = translations
i18n_files.path = /usr/share/$$TARGET
INSTALLS += i18n_files
CONFIG += sailfishapp
SOURCES += src/harbour-prostogram.cpp \
QtInstagram/src/api/instagram.cpp \
QtInstagram/src/api/instagramrequest.cpp \
QtInstagram/src/cripto/hmacsha.cpp \
QtInstagram/src/api2/request/account.cpp \
QtInstagram/src/api2/request/direct.cpp \
QtInstagram/src/api2/request/discover.cpp \
QtInstagram/src/api2/request/hashtag.cpp \
QtInstagram/src/api2/request/media.cpp \
QtInstagram/src/api2/request/people.cpp \
QtInstagram/src/api2/request/story.cpp \
QtInstagram/src/api2/request/timeline.cpp \
QtInstagram/src/api2/request/usertag.cpp \
QtInstagram/src/api2/instagramv2.cpp \
src/cacheimage.cpp \
QtInstagram/src/api2/instagramrequestv2.cpp
OTHER_FILES += qml/harbour-prostogram.qml \
qml/cover/*.qml \
qml/components/*.qml \
qml/pages/*.qml \
qml/*.js \
rpm/harbour-prostogram.spec \
translations/* \
LICENSE
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += sailfishapp_i18n
DISTFILES += \
qml/*.qml \
qml/components/*.qml \
qml/pages/*.qml \
qml/images/*.png \
qml/images/*.jpg \
qml/images/*.svg \
qml/components/LoaderImage.qml \
qml/components/LoaderCarusel.qml \
qml/images/carusel.svg \
qml/components/MainItemLoader.qml \
qml/components/LoaderVideo.qml \
qml/images/volume-up.svg \
qml/images/volume-off.svg \
qml/pages/UserSearchPage.qml \
qml/images/refresh.svg \
qml/components/SmallMediaElement.qml \
qml/pages/ExplorePage.qml \
qml/components/LoaderVideoPreview.qml \
qml/components/HorizontalList.qml \
qml/images/next.svg \
qml/components/ThreadView.qml \
qml/components/ThreadMessageItem.qml \
qml/pages/StoryShowPage.qml
TRANSLATIONS += translations/harbour-prostogram_ca.ts \
translations/harbour-prostogram_cs_CZ.ts \
translations/harbour-prostogram_da.ts \
translations/harbour-prostogram_de.ts \
translations/harbour-prostogram_el.ts \
translations/harbour-prostogram_en.ts \
translations/harbour-prostogram_es_AR.ts \
translations/harbour-prostogram_es.ts \
translations/harbour-prostogram_fi.ts \
translations/harbour-prostogram_fr.ts \
translations/harbour-prostogram_it_IT.ts \
translations/harbour-prostogram_nl_NL.ts \
translations/harbour-prostogram_pl.ts \
translations/harbour-prostogram_ru.ts \
translations/harbour-prostogram_sl_SI.ts \
translations/harbour-prostogram_sv_SE.ts \
translations/harbour-prostogram_tt.ts \
translations/harbour-prostogram.ts \
translations/harbour-prostogram_zh_CN.ts
HEADERS += \
QtInstagram/src/api/instagram.h \
QtInstagram/src/api/instagramrequest.h \
QtInstagram/src/cripto/hmacsha.h \
QtInstagram/src/api2/instagramv2.h \
src/cacheimage.h \
QtInstagram/src/api2/instagramrequestv2.h
DEFINES += APP_VERSION=\\\"$$VERSION\\\"