-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathharbour-saildiscord.pro
More file actions
92 lines (79 loc) · 2.86 KB
/
harbour-saildiscord.pro
File metadata and controls
92 lines (79 loc) · 2.86 KB
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
# 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-saildiscord
CONFIG += sailfishapp
#PKGCONFIG += qt5embedwidget
SOURCES += \
src/harbour-saildiscord.cpp
DISTFILES += \
harbour-saildiscord.desktop \
qml/components/Asset.qml \
qml/components/AttachmentsPreview.qml \
qml/components/ChannelItem.qml \
qml/components/Embed.qml \
qml/components/EmbedImageText.qml \
qml/components/EmbedPlaceholder.qml \
qml/components/FadeableFlickable.qml \
qml/components/GeneralAttachmentView.qml \
qml/components/ListImage.qml \
qml/components/MessageItem.qml \
qml/components/MessageReference.qml \
qml/components/PlaceholderImage.qml \
qml/components/PressEffect.qml \
qml/components/ServerListItem.qml \
qml/components/SettingsComboBox.qml \
qml/components/Shared.qml \
qml/components/SystemMessageItem.qml \
qml/components/VideoControls.qml \
qml/components/ZoomableImage.qml \
qml/cover/CoverPage.qml \
qml/harbour-saildiscord.qml \
qml/modules/FancyContextMenu/FancyAloneMenuItem.qml \
qml/modules/js/thumbhash.js \
qml/pages/AboutPage.qml \
qml/pages/AboutServerPage.qml \
qml/pages/AboutUserPage.qml \
qml/pages/ChannelsPage.qml \
qml/pages/DMsView.qml \
qml/pages/FirstPage.qml \
qml/pages/FullscreenAttachmentPage.qml \
qml/pages/LoginDialog.qml \
qml/pages/MessagesPage.qml \
qml/pages/SecondPage.qml \
qml/pages/SettingsPage.qml \
rpm/SailDiscord.changes.in \
rpm/SailDiscord.changes.run.in \
rpm/SailDiscord.spec \
translations/*.ts
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += sailfishapp_i18n
# German translation is enabled as an example. If you aren't
# planning to localize your app, remember to comment out the
# following TRANSLATIONS line. And also do not forget to
# modify the localized app name in the the .desktop file.
TRANSLATIONS += \
translations/harbour-saildiscord-it.ts \
translations/harbour-saildiscord-ru.ts \
translations/harbour-saildiscord-en.ts \
translations/harbour-saildiscord-nl.ts \
translations/harbour-saildiscord-sv.ts
HEADERS +=
images.files = images
images.path = /usr/share/$${TARGET}
python.files = python
python.path = /usr/share/$${TARGET}
INSTALLS += images python
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
DEFINES += APP_RELEASE=\\\"$$RELEASE\\\"
include(libs/opal-cached-defines.pri)