blob: 40d329066ee606f093f2255b8d67bd741034e31d (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
TARGET = pebbled
CONFIG += console
CONFIG += link_pkgconfig
QT += core gui qml bluetooth dbus contacts positioning
PKGCONFIG += mlite5 icu-i18n zlib
CONFIG += c++11
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
SOURCES += \
daemon.cpp \
manager.cpp \
voicecallmanager.cpp \
voicecallhandler.cpp \
notificationmanager.cpp \
watchconnector.cpp \
dbusconnector.cpp \
appmanager.cpp \
musicmanager.cpp \
datalogmanager.cpp \
unpacker.cpp \
appmsgmanager.cpp \
jskitmanager.cpp \
appinfo.cpp \
jskitobjects.cpp \
packer.cpp \
bankmanager.cpp \
uploadmanager.cpp \
bundle.cpp
HEADERS += \
manager.h \
voicecallmanager.h \
voicecallhandler.h \
notificationmanager.h \
watchconnector.h \
dbusconnector.h \
settings.h \
appmanager.h \
musicmanager.h \
unpacker.h \
datalogmanager.h \
appmsgmanager.h \
jskitmanager.h \
appinfo.h \
jskitobjects.h \
packer.h \
bankmanager.h \
uploadmanager.h \
bundle.h
DBUS_ADAPTORS += ../org.pebbled.Watch.xml
OTHER_FILES += js/typedarray.js
DEFINES += QUAZIP_STATIC
include(quazip/quazip.pri)
INSTALLS += target systemd js
target.path = /usr/bin
systemd.files = $${TARGET}.service
systemd.path = /usr/lib/systemd/user
js.files = js/*
js.path = /usr/share/pebble/js
# unnecesary includes, just so QtCreator could find headers... :-(
INCLUDEPATH += $$[QT_HOST_PREFIX]/include/mlite5
|