summaryrefslogtreecommitdiff
path: root/sowatch.pro
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2013-03-28 13:02:18 +0100
committerJavier S. Pedro <maemo@javispedro.com>2013-03-28 13:02:18 +0100
commitcb04065d6a84bb54b485d0ad8715f09a76191412 (patch)
treea54f4c6f2c217e3319e30bfb36f8c09f1bd2a153 /sowatch.pro
parent924de2248526430a8fee67582f510fc89a3786d4 (diff)
downloadsowatch-cb04065d6a84bb54b485d0ad8715f09a76191412.tar.gz
sowatch-cb04065d6a84bb54b485d0ad8715f09a76191412.zip
disable connection timer when bluetooth is off
Diffstat (limited to 'sowatch.pro')
-rw-r--r--sowatch.pro28
1 files changed, 21 insertions, 7 deletions
diff --git a/sowatch.pro b/sowatch.pro
index 7f89e81..bf97875 100644
--- a/sowatch.pro
+++ b/sowatch.pro
@@ -1,34 +1,52 @@
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
-SUBDIRS += notificationswatchlet sysinfowatchlet
-SUBDIRS += qmsgwatchlet qmapwatchlet
+# 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) {
- # Harmattan specific stuff
SUBDIRS += meegohandsetnotification ckitcallnotification harmaccuweather
SUBDIRS += meecastweather
SUBDIRS += qmafwwatchlet
@@ -38,10 +56,6 @@ contains(MEEGO_EDITION,harmattan) {
harmaccuweather.depends = libsowatch
meecastweather.depends = libsowatch
qmafwwatchlet.depends = libsowatch
-} else:simulator {
- # This notification provider builds almost everywhere so it's good enough as testcase
- SUBDIRS += harmaccuweather
- harmaccuweather.depends = libsowatch
}
# Debug only watchlets