2018-10-17 00:52:28 +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-nextcloudnotes
|
|
|
|
|
|
|
|
CONFIG += sailfishapp
|
|
|
|
|
2018-11-27 14:08:44 +03:00
|
|
|
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
|
|
|
|
|
2018-11-27 11:58:21 +03:00
|
|
|
SOURCES += src/harbour-nextcloudnotes.cpp \
|
2018-10-17 00:52:28 +03:00
|
|
|
|
|
|
|
DISTFILES += qml/harbour-nextcloudnotes.qml \
|
|
|
|
qml/cover/CoverPage.qml \
|
|
|
|
rpm/harbour-nextcloudnotes.changes.run.in \
|
|
|
|
rpm/harbour-nextcloudnotes.spec \
|
|
|
|
rpm/harbour-nextcloudnotes.yaml \
|
|
|
|
translations/*.ts \
|
|
|
|
harbour-nextcloudnotes.desktop \
|
2018-10-18 01:33:47 +03:00
|
|
|
qml/pages/NotePage.qml \
|
2018-10-21 02:44:23 +03:00
|
|
|
qml/pages/NotesPage.qml \
|
|
|
|
qml/pages/LoginDialog.qml \
|
2018-10-22 23:53:14 +03:00
|
|
|
qml/pages/EditPage.qml \
|
2018-10-23 23:15:59 +03:00
|
|
|
qml/pages/SettingsPage.qml \
|
|
|
|
qml/pages/AboutPage.qml \
|
2018-11-15 00:13:47 +03:00
|
|
|
qml/pages/MarkdownPage.qml \
|
2018-11-25 16:08:00 +03:00
|
|
|
qml/pages/UnencryptedDialog.qml \
|
2018-11-27 11:58:21 +03:00
|
|
|
qml/pages/NotesApi.qml \
|
2018-11-27 14:08:44 +03:00
|
|
|
rpm/harbour-nextcloudnotes.changes \
|
|
|
|
qml/pages/MITLicense.qml \
|
|
|
|
qml/pages/GPLLicense.qml
|
2018-10-17 00:52:28 +03:00
|
|
|
|
|
|
|
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-nextcloudnotes-de.ts
|
|
|
|
|
|
|
|
HEADERS +=
|