diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2011-10-16 04:42:30 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2011-10-16 04:42:30 +0200 |
commit | 4da9bced6a27b92d49b9fc9392946510b8519d82 (patch) | |
tree | 7a2417a932a6463e3e6f6ec4d3799e24de917306 /harmaccuweather/harmaccuweather.pro | |
parent | bde4bde8ec9d6d09874d5ae9e0ba6dc9431859b6 (diff) | |
download | sowatch-4da9bced6a27b92d49b9fc9392946510b8519d82.tar.gz sowatch-4da9bced6a27b92d49b9fc9392946510b8519d82.zip |
Initial implementation of weather
Diffstat (limited to 'harmaccuweather/harmaccuweather.pro')
-rw-r--r-- | harmaccuweather/harmaccuweather.pro | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/harmaccuweather/harmaccuweather.pro b/harmaccuweather/harmaccuweather.pro new file mode 100644 index 0000000..7c9bfe5 --- /dev/null +++ b/harmaccuweather/harmaccuweather.pro @@ -0,0 +1,33 @@ +TARGET = harmaccuweather +TEMPLATE = lib +# CONFIG += plugin # Qt creator doesn't want to deploy plugins +CONFIG += mobility +MOBILITY += systeminfo + +SOURCES += harmaccuplugin.cpp harmaccuprovider.cpp \ + harmaccuweather.cpp + +HEADERS += harmaccuplugin.h harmaccuprovider.h \ + harmaccuweather.h + +unix: LIBS += -L$$OUT_PWD/../libsowatch/ -lsowatch + +INCLUDEPATH += $$PWD/../libsowatch +DEPENDPATH += $$PWD/../libsowatch + +unix:!symbian { + maemo5 { + target.path = /opt/sowatch/notifications + } else { + target.path = /usr/lib/sowatch/notifications + } + INSTALLS += target +} + + + + + + + + |