harbour-batterybuddy/service/service.pro

43 lines
942 B
Prolog
Raw Normal View History

TARGET = harbour-batterybuddy-daemon
CONFIG = sailfishapp qt console c++11 sailfish_build
QT = core network dbus multimedia dbus
PKGCONFIG += nemonotifications-qt5
# Keep this in sync with "application.pro"
2021-01-31 22:45:03 +03:00
VER = 3.8
2020-12-30 02:06:25 +03:00
REL = 1
VERSION = $${VER}-$${REL}
DEFINES += APP_VERSION=\"\\\"$$VERSION\\\"\"
DEFINES += APP_NAME=\"\\\"$$TARGET\\\"\"
2021-04-17 22:01:19 +03:00
# Use "--verbose" and "--debug" at runtime.
# See main() and logger.h for details.
DEFINES += QT_NO_DEBUG_OUTPUT
HEADERS += \
src/battery.h \
src/mynotification.h \
src/profile.h \
2021-04-17 22:01:19 +03:00
src/logger.h \
src/settings.h
SOURCES += \
src/battery.cpp \
src/mynotification.cpp \
src/profile.cpp \
2021-04-17 22:01:19 +03:00
src/logger.cpp \
src/settings.cpp \
src/harbour-batterybuddy-daemon.cpp
OTHER_FILES += harbour-batterybuddy-daemon.service
service.path = /usr/lib/systemd/user/
service.files += harbour-batterybuddy-daemon.service
target.path = /usr/bin/
INSTALLS += target service