harbour-batterybuddy/harbour-batterybuddy.pro

71 lines
1.8 KiB
Prolog
Raw Normal View History

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
CONFIG += sailfishapp sailfishapp_i18n
2019-01-05 16:49:35 +03:00
2020-03-21 06:02:04 +03:00
#DEFINES += QT_NO_DEBUG_OUTPUT
HEADERS += \
src/battery.h \
src/settings.h
2019-01-05 18:14:00 +03:00
SOURCES += src/harbour-batterybuddy.cpp \
src/battery.cpp \
src/settings.cpp
2019-01-05 16:49:35 +03:00
DISTFILES += qml/harbour-batterybuddy.qml \
qml/components/AboutLabel.qml \
2020-03-20 23:57:59 +03:00
qml/components/MySlider.qml \
qml/pages\LicensePage.qml \
2019-01-05 16:49:35 +03:00
qml/cover/CoverPage.qml \
rpm/harbour-batterybuddy.spec \
rpm/harbour-batterybuddy.yaml \
service/clear-write-permissions.sh \
service/harbour-batterybuddy.service \
service/set-write-permissions.sh \
2019-01-05 16:49:35 +03:00
translations/*.ts \
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 \
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
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
TRANSLATIONS += translations/*.ts
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
#OTHER_FILES += sounds/upperLimit.ogg \
# sounds/lowerLimit.ogg \
2019-01-05 21:15:29 +03:00
#sounds.files = sounds
#sounds.path = /usr/share/$${TARGET}
2019-01-05 21:15:29 +03:00
#INSTALLS += sounds
2019-01-05 21:15:29 +03:00
# End: include sound files