2020-08-10 15:17:29 +03:00
|
|
|
# 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-fernschreiber
|
|
|
|
|
|
|
|
CONFIG += sailfishapp sailfishapp_i18n
|
|
|
|
|
2020-09-13 22:54:36 +03:00
|
|
|
PKGCONFIG += nemonotifications-qt5 ngf-qt5
|
2020-09-04 00:20:46 +03:00
|
|
|
|
2020-08-28 11:41:18 +03:00
|
|
|
QT += core dbus
|
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
SOURCES += src/harbour-fernschreiber.cpp \
|
2020-10-06 04:40:12 +03:00
|
|
|
src/appsettings.cpp \
|
2020-08-19 10:55:13 +03:00
|
|
|
src/chatlistmodel.cpp \
|
2020-08-22 18:30:02 +03:00
|
|
|
src/chatmodel.cpp \
|
2020-09-15 00:43:21 +03:00
|
|
|
src/dbusadaptor.cpp \
|
|
|
|
src/dbusinterface.cpp \
|
2020-10-03 23:58:45 +03:00
|
|
|
src/fernschreiberutils.cpp \
|
2020-09-02 23:49:15 +03:00
|
|
|
src/notificationmanager.cpp \
|
2020-09-28 23:58:11 +03:00
|
|
|
src/processlauncher.cpp \
|
2020-08-10 21:17:13 +03:00
|
|
|
src/tdlibreceiver.cpp \
|
2020-08-10 15:17:29 +03:00
|
|
|
src/tdlibwrapper.cpp
|
|
|
|
|
|
|
|
DISTFILES += qml/harbour-fernschreiber.qml \
|
2020-08-28 15:14:05 +03:00
|
|
|
qml/components/AudioPreview.qml \
|
2020-08-28 17:18:33 +03:00
|
|
|
qml/components/DocumentPreview.qml \
|
2020-08-25 00:02:08 +03:00
|
|
|
qml/components/ImagePreview.qml \
|
2020-08-28 18:40:25 +03:00
|
|
|
qml/components/InReplyToRow.qml \
|
2020-09-28 23:58:11 +03:00
|
|
|
qml/components/LocationPreview.qml \
|
2020-08-29 16:51:48 +03:00
|
|
|
qml/components/WebPagePreview.qml \
|
2020-08-19 17:47:59 +03:00
|
|
|
qml/js/functions.js \
|
2020-08-21 15:26:56 +03:00
|
|
|
qml/pages/ChatPage.qml \
|
2020-08-10 15:17:29 +03:00
|
|
|
qml/pages/CoverPage.qml \
|
2020-08-13 11:15:26 +03:00
|
|
|
qml/pages/InitializationPage.qml \
|
2020-08-10 15:17:29 +03:00
|
|
|
qml/pages/OverviewPage.qml \
|
|
|
|
qml/pages/AboutPage.qml \
|
2020-09-16 23:04:02 +03:00
|
|
|
qml/pages/SettingsPage.qml \
|
2020-08-28 12:43:51 +03:00
|
|
|
qml/pages/VideoPage.qml \
|
2020-08-10 15:17:29 +03:00
|
|
|
rpm/harbour-fernschreiber.changes.in \
|
|
|
|
rpm/harbour-fernschreiber.spec \
|
|
|
|
rpm/harbour-fernschreiber.yaml \
|
|
|
|
translations/*.ts \
|
|
|
|
harbour-fernschreiber.desktop
|
|
|
|
|
|
|
|
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172 256x256
|
|
|
|
|
2020-09-21 23:10:03 +03:00
|
|
|
TRANSLATIONS += translations/harbour-fernschreiber-de.ts \
|
|
|
|
translations/harbour-fernschreiber-es.ts \
|
2020-10-04 22:24:24 +03:00
|
|
|
translations/harbour-fernschreiber-fi.ts \
|
2020-09-23 22:49:27 +03:00
|
|
|
translations/harbour-fernschreiber-hu.ts \
|
2020-09-22 21:32:35 +03:00
|
|
|
translations/harbour-fernschreiber-pl.ts \
|
2020-10-04 15:34:02 +03:00
|
|
|
translations/harbour-fernschreiber-ru.ts \
|
2020-09-21 23:10:03 +03:00
|
|
|
translations/harbour-fernschreiber-zh_CN.ts
|
2020-08-10 15:17:29 +03:00
|
|
|
|
2020-10-01 14:22:12 +03:00
|
|
|
contains(QT_ARCH, arm) {
|
|
|
|
TARGET_ARCHITECTURE = armv7hl
|
|
|
|
} else {
|
|
|
|
TARGET_ARCHITECTURE = i486
|
|
|
|
}
|
2020-08-10 15:17:29 +03:00
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/tdlib/include
|
|
|
|
DEPENDPATH += $$PWD/tdlib/include
|
2020-09-26 16:53:47 +03:00
|
|
|
LIBS += -L$$PWD/tdlib/$${TARGET_ARCHITECTURE}/lib/ -ltdjson
|
|
|
|
telegram.files = $$PWD/tdlib/$${TARGET_ARCHITECTURE}/lib
|
2020-08-10 15:17:29 +03:00
|
|
|
telegram.path = /usr/share/$${TARGET}
|
|
|
|
|
|
|
|
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-fernschreiber.png
|
|
|
|
|
|
|
|
108.png.path = $${ICONPATH}/108x108/apps/
|
|
|
|
108.png.files += icons/108x108/harbour-fernschreiber.png
|
|
|
|
|
|
|
|
128.png.path = $${ICONPATH}/128x128/apps/
|
|
|
|
128.png.files += icons/128x128/harbour-fernschreiber.png
|
|
|
|
|
|
|
|
172.png.path = $${ICONPATH}/172x172/apps/
|
|
|
|
172.png.files += icons/172x172/harbour-fernschreiber.png
|
|
|
|
|
|
|
|
256.png.path = $${ICONPATH}/256x256/apps/
|
|
|
|
256.png.files += icons/256x256/harbour-fernschreiber.png
|
|
|
|
|
|
|
|
fernschreiber.desktop.path = /usr/share/applications/
|
|
|
|
fernschreiber.desktop.files = harbour-fernschreiber.desktop
|
|
|
|
|
|
|
|
INSTALLS += telegram 86.png 108.png 128.png 172.png 256.png \
|
|
|
|
fernschreiber.desktop gui images
|
|
|
|
|
|
|
|
HEADERS += \
|
2020-10-06 04:40:12 +03:00
|
|
|
src/appsettings.h \
|
2020-08-19 10:55:13 +03:00
|
|
|
src/chatlistmodel.h \
|
2020-08-22 18:30:02 +03:00
|
|
|
src/chatmodel.h \
|
2020-09-15 00:43:21 +03:00
|
|
|
src/dbusadaptor.h \
|
|
|
|
src/dbusinterface.h \
|
2020-10-03 23:58:45 +03:00
|
|
|
src/fernschreiberutils.h \
|
2020-09-02 23:49:15 +03:00
|
|
|
src/notificationmanager.h \
|
2020-09-28 23:58:11 +03:00
|
|
|
src/processlauncher.h \
|
2020-08-10 21:17:13 +03:00
|
|
|
src/tdlibreceiver.h \
|
2020-08-10 15:17:29 +03:00
|
|
|
src/tdlibsecrets.h \
|
|
|
|
src/tdlibwrapper.h
|