blob: deadea002c35dcaad50163533accb92c739bf2bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
TARGET = pebbled
CONFIG += console
CONFIG -= app_bundle
CONFIG += link_pkgconfig
QT -= gui
QT += bluetooth dbus contacts
PKGCONFIG += commhistory-qt5 mlite5
QMAKE_CXXFLAGS += -std=c++0x
SOURCES += \
daemon.cpp \
manager.cpp \
voicecallmanager.cpp \
voicecallhandler.cpp \
watchconnector.cpp \
dbusconnector.cpp \
dbusadaptor.cpp
HEADERS += \
manager.h \
voicecallmanager.h \
voicecallhandler.h \
watchconnector.h \
dbusconnector.h \
dbusadaptor.h
INSTALLS += target pebbled
target.path = /usr/bin
pebbled.files = $${TARGET}.service
pebbled.path = /usr/lib/systemd/user
OTHER_FILES += org.pebbled.xml
|