From ccd19d2b7ee4184503ea46b98333b27a5613190e Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Wed, 8 May 2013 18:04:31 +0200 Subject: big change: a new abstract BluetoothWatch class --- liveview/liveview.pro | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 liveview/liveview.pro (limited to 'liveview/liveview.pro') diff --git a/liveview/liveview.pro b/liveview/liveview.pro new file mode 100644 index 0000000..9b949d7 --- /dev/null +++ b/liveview/liveview.pro @@ -0,0 +1,39 @@ +TARGET = liveviewdriver +TEMPLATE = lib +CONFIG += plugin +QT += gui + +# Qt Mobility 1.2 +maemo5 { + CONFIG += mobility12 +} else { + CONFIG += mobility +} +MOBILITY += connectivity systeminfo + +SOURCES += liveviewplugin.cpp \ + liveviewscanner.cpp \ + liveview.cpp +HEADERS += liveviewplugin.h \ + liveviewscanner.h \ + liveview.h + +LIBS += -L$$OUT_PWD/../libsowatch/ -lsowatch +INCLUDEPATH += $$PWD/../libsowatch +DEPENDPATH += $$PWD/../libsowatch + +LIBS += -L$$OUT_PWD/../libsowatchbt/ -lsowatchbt +INCLUDEPATH += $$PWD/../libsowatchbt +DEPENDPATH += $$PWD/../libsowatchbt + +!isEmpty(MEEGO_VERSION_MAJOR)|maemo5 { + QMAKE_RPATHDIR += /opt/sowatch/lib + target.path = /opt/sowatch/lib/drivers + res_files.path = /opt/sowatch/share/metawatch + qml_files.path = /opt/sowatch/qml +} else { + target.path = /usr/lib/sowatch/drivers + res_files.path = /usr/share/sowatch/metawatch + qml_files.path = /usr/share/sowatch/qml +} +INSTALLS += target -- cgit v1.2.3