blob: 4c08cff145b1dc180a76ac5ec9c9f7e10783042a (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
TEMPLATE = subdirs
# Please comment subdirectories you do not want to build as desired
# Core library
# This is mandatory. Depends on Qt and GConf.
SUBDIRS = libsowatch
# The MetaWatch driver plugin
# Since this is the only watch plugin, it is mandatory.
# Depends on Qt Mobility SystemInfo and Bluetooth.
SUBDIRS += metawatch
metawatch.depends = libsowatch
# Some watchlets
# This just shows a list of pending notifications and has no dependencies.
SUBDIRS += notificationswatchlet
notificationswatchlet.depends = libsowatch
# This shows some values from Qt SystemInfo on the watch
SUBDIRS += sysinfowatchlet
sysinfowatchlet.depends = libsowatch
# This shows some inbox messages using QtMobility
SUBDIRS += qmsgwatchlet
qmsgwatchlet.depends = libsowatch
# This shows a map around the current position using QtMobility Mapping features
SUBDIRS += qmapwatchlet
qmapwatchlet.depends = libsowatch
# Toy watchlets
# Shows a cat running around. No dependencies.
SUBDIRS += nekowatchlet
nekowatchlet.depends = libsowatch
unix {
# These use D-Bus for interprocess communication.
# The main daemon.
SUBDIRS += sowatchd
# Configuration interface.
SUBDIRS += sowatchui
sowatchd.depends = libsowatch
sowatchui.depends = libsowatch sowatchd
}
# Harmattan specific stuff
contains(MEEGO_EDITION,harmattan) {
# Obtain notifications from the Meego Handset spec
SUBDIRS += meegohandsetnotification
# Obtain notifications of in-progress calls
SUBDIRS += ckitcallnotification
# Obtain weather information from the Harmattan weather app
SUBDIRS += harmaccuweather
# Obtain weather information from MeeCast
SUBDIRS += meecastweather
# Control the Harmattan music player
SUBDIRS += qmafwwatchlet
meegohandsetnotification.depends = libsowatch
ckitcallnotification.depends = libsowatch
harmaccuweather.depends = libsowatch
meecastweather.depends = libsowatch
qmafwwatchlet.depends = libsowatch
}
# Debug only watchlets
CONFIG(debug, debug|release) {
SUBDIRS += testnotification
testnotification.depends = libsowatch
}
# Packaging stuff
OTHER_FILES += \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/README \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog \
qtc_packaging/debian_harmattan/manifest.aegis \
qtc_packaging/debian_harmattan/prerm \
qtc_packaging/debian_harmattan/postinst \
qtc_packaging/debian_fremantle/rules \
qtc_packaging/debian_fremantle/README \
qtc_packaging/debian_fremantle/copyright \
qtc_packaging/debian_fremantle/control \
qtc_packaging/debian_fremantle/compat \
qtc_packaging/debian_fremantle/changelog
|