2019-01-05 16:49:35 +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-batterybuddy
|
|
|
|
|
2019-01-08 22:15:36 +03:00
|
|
|
CONFIG += sailfishapp sailfishapp_i18n
|
2019-01-05 16:49:35 +03:00
|
|
|
|
2019-01-08 21:21:21 +03:00
|
|
|
HEADERS += \
|
|
|
|
src/battery.h \
|
|
|
|
src/settings.h
|
|
|
|
|
2019-01-05 18:14:00 +03:00
|
|
|
SOURCES += src/harbour-batterybuddy.cpp \
|
2019-01-05 22:58:52 +03:00
|
|
|
src/battery.cpp \
|
|
|
|
src/settings.cpp
|
2019-01-05 16:49:35 +03:00
|
|
|
|
|
|
|
DISTFILES += qml/harbour-batterybuddy.qml \
|
2020-01-05 14:06:35 +03:00
|
|
|
qml/components/AboutLabel.qml \
|
2020-03-20 23:57:59 +03:00
|
|
|
qml/components/MySlider.qml \
|
2020-01-05 14:06:35 +03:00
|
|
|
qml/pages\LicensePage.qml \
|
2019-01-05 16:49:35 +03:00
|
|
|
qml/cover/CoverPage.qml \
|
|
|
|
rpm/harbour-batterybuddy.spec \
|
|
|
|
rpm/harbour-batterybuddy.yaml \
|
2020-03-20 18:27:38 +03:00
|
|
|
service/clear-write-permissions.sh \
|
|
|
|
service/harbour-batterybuddy.service \
|
|
|
|
service/set-write-permissions.sh \
|
2019-01-05 16:49:35 +03:00
|
|
|
translations/*.ts \
|
2019-01-05 18:15:32 +03:00
|
|
|
harbour-batterybuddy.desktop \
|
2019-01-05 21:16:04 +03:00
|
|
|
qml/pages/MainPage.qml \
|
2019-01-06 00:37:44 +03:00
|
|
|
qml/pages/AboutPage.qml \
|
2019-01-06 00:48:29 +03:00
|
|
|
qml/pages/InfoPage.qml \
|
2019-01-29 02:09:54 +03:00
|
|
|
rpm/harbour-batterybuddy.changes \
|
2019-01-29 02:23:53 +03:00
|
|
|
qml/components/BatteryGraph.qml \
|
2019-01-29 02:25:16 +03:00
|
|
|
qml/pages/SettingsPage.qml \
|
2019-01-29 02:23:53 +03:00
|
|
|
qml/components/MyDetailItem.qml
|
2019-01-05 21:16:04 +03:00
|
|
|
|
2019-01-08 22:15:36 +03:00
|
|
|
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
|
|
|
|
|
|
|
|
TRANSLATIONS += translations/*.ts
|
|
|
|
|
2020-03-20 18:27:38 +03:00
|
|
|
OTHER_FILES += service/clear-write-permissions.sh \
|
|
|
|
service/harbour-batterybuddy.service \
|
|
|
|
service/set-write-permissions.sh
|
|
|
|
|
|
|
|
service.files = service
|
|
|
|
service.path = /usr/share/$${TARGET}
|
|
|
|
|
|
|
|
INSTALLS += service
|
|
|
|
|
2019-01-05 21:15:29 +03:00
|
|
|
# Begin: include sound files
|
|
|
|
|
2019-01-05 23:02:01 +03:00
|
|
|
#OTHER_FILES += sounds/upperLimit.ogg \
|
|
|
|
# sounds/lowerLimit.ogg \
|
2019-01-05 21:15:29 +03:00
|
|
|
|
2019-01-05 23:02:01 +03:00
|
|
|
#sounds.files = sounds
|
2020-03-20 18:27:38 +03:00
|
|
|
#sounds.path = /usr/share/$${TARGET}
|
2019-01-05 21:15:29 +03:00
|
|
|
|
2019-01-05 23:02:01 +03:00
|
|
|
#INSTALLS += sounds
|
2019-01-05 21:15:29 +03:00
|
|
|
|
|
|
|
# End: include sound files
|