blob: 21e7a948e4b6fb54868e27192e6a5109797888e0 (
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
|
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 \
liveviewpaintengine.cpp
HEADERS += liveviewplugin.h \
liveviewscanner.h \
liveview.h \
liveviewpaintengine.h
res_files.files += res/graphics res/fonts
qml_files.files += qml/com qml/liveview-config.qml
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/liveview
qml_files.path = /opt/sowatch/qml
} else {
target.path = /usr/lib/sowatch/drivers
res_files.path = /usr/share/sowatch/liveview
qml_files.path = /usr/share/sowatch/qml
}
INSTALLS += target res_files qml_files
|