2016-10-19 21:37:26 +02: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
|
2018-02-19 22:36:00 +01:00
|
|
|
TEMPLATE = app
|
2016-10-19 21:37:26 +02:00
|
|
|
TARGET = friendiqa
|
2018-02-19 22:36:00 +01:00
|
|
|
CONFIG += release
|
2019-12-10 21:12:32 +01:00
|
|
|
QT += qml quick gui widgets sql webview dbus webengine
|
2016-10-19 21:37:26 +02:00
|
|
|
|
|
|
|
SOURCES += common/friendiqa.cpp \
|
|
|
|
common/uploadableimage.cpp \
|
|
|
|
common/xhr.cpp \
|
2017-11-07 21:57:40 +01:00
|
|
|
common/filesystem.cpp \
|
2018-11-09 22:06:13 +01:00
|
|
|
common/remoteauthasyncimageprovider.cpp \
|
2019-01-09 22:03:16 +01:00
|
|
|
common/updatenews.cpp \
|
2019-06-25 20:59:10 +02:00
|
|
|
common/alarmlinux.cpp
|
2016-10-19 21:37:26 +02:00
|
|
|
|
|
|
|
RESOURCES = application.qrc
|
|
|
|
|
|
|
|
OTHER_FILES += qml/friendiqa.qml \
|
|
|
|
translations/*.ts \
|
|
|
|
qml/*.qml
|
2016-12-04 18:28:52 +01:00
|
|
|
qml/newsqml/*.qml
|
|
|
|
qml/contactqml/*.qml
|
|
|
|
qml/photoqml/*.qml
|
|
|
|
qml/configqml/*.qml
|
2016-10-19 21:37:26 +02:00
|
|
|
js/*.js
|
|
|
|
|
2018-02-19 22:36:00 +01:00
|
|
|
TRANSLATIONS += translations/friendiqa-de.ts \
|
|
|
|
translations/friendiqa-es.ts \
|
|
|
|
translations/friendiqa-it.ts
|
2016-10-19 21:37:26 +02:00
|
|
|
HEADERS += \
|
|
|
|
common/uploadableimage.h \
|
|
|
|
common/xhr.h \
|
2018-02-19 22:36:00 +01:00
|
|
|
common/filesystem.h \
|
2018-11-09 22:06:13 +01:00
|
|
|
common/remoteauthasyncimageprovider.h \
|
2019-01-09 22:03:16 +01:00
|
|
|
common/updatenews.h \
|
|
|
|
common/alarm.h
|
2018-02-19 22:36:00 +01:00
|
|
|
|
2017-05-11 22:15:34 +02:00
|
|
|
DISTFILES += \
|
2018-02-19 22:36:00 +01:00
|
|
|
qml/calendarqml/*.qml \
|
|
|
|
translations/*.ts \
|
|
|
|
translations/*.qm \
|
|
|
|
qml/*.qml \
|
|
|
|
qml/newsqml/*.qml \
|
|
|
|
qml/contactqml/*.qml \
|
|
|
|
qml/photoqml/*.qml \
|
|
|
|
qml/configqml/*.qml \
|
|
|
|
js/*.js \
|
2020-05-24 21:14:23 +02:00
|
|
|
|
2020-01-27 21:53:51 +01:00
|
|
|
|
2020-02-20 21:05:09 +01:00
|
|
|
target.path=/usr/bin
|
2020-02-19 22:02:27 +01:00
|
|
|
desktop.path = /usr/share/applications
|
|
|
|
desktop.files = images/de.ma-nic.Friendiqa.desktop
|
|
|
|
icon.path = /usr/share/icons/hicolor/scalable/apps
|
|
|
|
icon.files = images/Friendiqa.svg
|
|
|
|
INSTALLS+=target desktop icon
|