diff options
Diffstat (limited to 'liveviewwatchlets/liveviewwatchlets.pro')
-rw-r--r-- | liveviewwatchlets/liveviewwatchlets.pro | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/liveviewwatchlets/liveviewwatchlets.pro b/liveviewwatchlets/liveviewwatchlets.pro new file mode 100644 index 0000000..5af74e2 --- /dev/null +++ b/liveviewwatchlets/liveviewwatchlets.pro @@ -0,0 +1,32 @@ +TARGET = liveviewwatchlets +TEMPLATE = lib +CONFIG += plugin + +SOURCES += liveviewwatchletsplugin.cpp \ + liveviewnotificationwatchlet.cpp + +HEADERS += liveviewwatchletsplugin.h \ + liveviewnotificationwatchlet.h \ + liveviewnotificationwatchlet.h + +qml_files.files = liveview-notification.qml + +LIBS += -L$$OUT_PWD/../libsowatch/ -lsowatch +INCLUDEPATH += $$PWD/../libsowatch +DEPENDPATH += $$PWD/../libsowatch +QML_IMPORT_PATH += $$PWD/../liveview/qml + +unix:!symbian { + !isEmpty(MEEGO_VERSION_MAJOR)|maemo5 { + QMAKE_RPATHDIR += /opt/sowatch/lib + target.path = /opt/sowatch/lib/watchlets + qml_files.path = /opt/sowatch/qml/$$TARGET + } else { + target.path = /usr/lib/sowatch/watchlets + qml_files.path = /usr/share/sowatch/qml/$$TARGET + } + INSTALLS += target qml_files +} + +OTHER_FILES += \ + liveview-notification.qml |