2018-12-29 03:40:11 +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
|
|
|
|
|
|
|
|
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
|
|
|
|
|
2020-03-29 19:03:05 +03:00
|
|
|
HEADERS += src/note.h \
|
2021-01-03 21:07:47 +03:00
|
|
|
src/accounthash.h \
|
2019-11-10 05:35:33 +03:00
|
|
|
src/notesapi.h \
|
2020-05-12 02:30:32 +03:00
|
|
|
src/notesmodel.h
|
2018-12-29 03:40:11 +03:00
|
|
|
|
|
|
|
SOURCES += src/harbour-nextcloudnotes.cpp \
|
2019-12-30 20:14:38 +03:00
|
|
|
src/note.cpp \
|
2019-11-10 05:35:33 +03:00
|
|
|
src/notesapi.cpp \
|
2020-05-12 02:30:32 +03:00
|
|
|
src/notesmodel.cpp
|
2018-12-29 03:40:11 +03:00
|
|
|
|
|
|
|
DISTFILES += qml/harbour-nextcloudnotes.qml \
|
|
|
|
qml/cover/CoverPage.qml \
|
2020-05-25 09:05:16 +03:00
|
|
|
qml/img/nextcloud-logo-dark.png \
|
|
|
|
qml/img/nextcloud-logo-light.png \
|
2020-12-31 17:19:38 +03:00
|
|
|
qml/img/icon-launcher-nextcloudnotes.svg \
|
2020-01-19 15:13:29 +03:00
|
|
|
qml/pages/LoginPage.qml \
|
2018-12-29 03:40:11 +03:00
|
|
|
rpm/harbour-nextcloudnotes.changes.run.in \
|
|
|
|
rpm/harbour-nextcloudnotes.changes \
|
|
|
|
rpm/harbour-nextcloudnotes.spec \
|
|
|
|
rpm/harbour-nextcloudnotes.yaml \
|
|
|
|
translations/*.ts \
|
|
|
|
harbour-nextcloudnotes.desktop \
|
|
|
|
qml/pages/NotePage.qml \
|
|
|
|
qml/pages/NotesPage.qml \
|
|
|
|
qml/pages/EditPage.qml \
|
|
|
|
qml/pages/SettingsPage.qml \
|
|
|
|
qml/pages/AboutPage.qml \
|
|
|
|
qml/pages/UnencryptedDialog.qml \
|
|
|
|
qml/pages/NotesApi.qml \
|
|
|
|
qml/pages/MITLicense.qml \
|
|
|
|
qml/pages/GPLLicense.qml \
|
2019-11-11 01:04:42 +03:00
|
|
|
qml/pages/SyntaxPage.qml
|
2018-12-29 03:40:11 +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 \
|
|
|
|
translations/harbour-nextcloudnotes-sv.ts
|