blob: 96518da92b02981a64971c5c315fde2b206a6539 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#-------------------------------------------------
#
# Project created by QtCreator 2011-09-17T03:22:32
#
#-------------------------------------------------
TARGET = metawatchdriver
TEMPLATE = lib
# CONFIG += plugin # Stupid Qt creator doesn't want to deploy plugins
QT += gui
CONFIG += mobility
MOBILITY += connectivity systeminfo
SOURCES += metawatchplugin.cpp \
metawatchsimulatorform.cpp \
metawatchsimulator.cpp \
metawatchpaintengine.cpp \
metawatch.cpp \
metawatchdigital.cpp \
metawatchanalog.cpp
HEADERS += metawatchplugin.h \
metawatchsimulatorform.h \
metawatchsimulator.h \
metawatchpaintengine.h \
metawatch.h \
metawatchdigital.h \
metawatchanalog.h
FORMS += \
metawatchsimulatorform.ui
RESOURCES += \
uires.qrc
OTHER_FILES += \
idle_sms.bmp \
idle_gmail.bmp \
idle_call.bmp \
weather_wind.bmp \
weather_thunderstorm.bmp \
weather_sunny.bmp \
weather_snow.bmp \
weather_rain.bmp \
weather_cloudy.bmp \
metawatch_16pt_11pxl.ttf \
metawatch_8pt_7pxl_CAPS.ttf \
metawatch_8pt_5pxl_CAPS.ttf
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../libsowatch/release/ -lsowatch
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../libsowatch/debug/ -lsowatch
else:symbian: LIBS += -lsowatch
else:unix: LIBS += -L$$OUT_PWD/../libsowatch/ -lsowatch
INCLUDEPATH += $$PWD/../libsowatch
DEPENDPATH += $$PWD/../libsowatch
symbian {
MMP_RULES += EXPORTUNFROZEN
TARGET.UID3 = 0xE4DC26B0
TARGET.CAPABILITY =
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = metawatchdriver.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
}
unix:!symbian {
maemo5 {
target.path = /opt/sowatch/drivers
} else {
target.path = /usr/lib/sowatch/drivers
}
INSTALLS += target
}
|