blob: 27baac9d9ca314502df67084dfedd2bf75e2f336 (
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
|
TARGET = pebbled
CONFIG += console
CONFIG -= app_bundle
QT -= gui
INCLUDEPATH += ../lib
LIBS += -L$$OUT_PWD/../lib -lpebble
QT += bluetooth dbus contacts
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
target.path = /usr/sbin
|