blob: b0957fe25babfda17848367d5c65aefa167ded64 (
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
|
TARGET = pebbled
CONFIG += console
CONFIG -= app_bundle
CONFIG += link_pkgconfig
QT -= gui
INCLUDEPATH += ../lib
LIBS += -L$$OUT_PWD/../lib -lpebble
QT += bluetooth dbus contacts
PKGCONFIG += commhistory-qt5 mlite5
QMAKE_CXXFLAGS += -std=c++0x
SOURCES += \
daemon.cpp \
voicecallmanager.cpp \
voicecallhandler.cpp \
manager.cpp \
dbusconnector.cpp
HEADERS += \
voicecallmanager.h \
voicecallhandler.h \
manager.h \
dbusconnector.h
INSTALLS += target pebbled
target.path = /usr/bin
pebbled.files = $${TARGET}.service
pebbled.path = /usr/lib/systemd/user
|