harbour-batterybuddy/service/service.pro

39 lines
853 B
Prolog
Raw Normal View History

TARGET = harbour-batterybuddy-daemon
QT = core dbus
PKGCONFIG += nemonotifications-qt5
2022-03-19 22:54:01 +03:00
# Keep this in sync with application.pro and .spec
2022-08-07 23:18:22 +03:00
VERSION = 4.1.0-beta2
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
2022-03-19 23:49:05 +03:00
LIBS += -lkeepalive -lnemonotifications-qt5
HEADERS += \
src/battery.h \
2021-04-17 22:01:19 +03:00
src/logger.h \
src/settings.h \
src/mynotification.h
SOURCES += \
src/battery.cpp \
2021-04-17 22:01:19 +03:00
src/logger.cpp \
src/settings.cpp \
src/harbour-batterybuddy-daemon.cpp \
src/mynotification.cpp
2021-05-23 15:27:26 +03:00
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