blob: 34d6cb8e68e3b96a3682355679552824e6238c67 (
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
|
QT += xml network svg
TARGET = MapViewer
TEMPLATE = app
INCLUDEPATH += ../../../../src/global \
../../../../src/location \
../../../../src/location/maps
SOURCES += main.cpp \
mainwindow.cpp \
mapbox.cpp \
geomap.cpp \
mapbox_menuhandlers.cpp
HEADERS += mainwindow.h \
mapbox.h \
geomap.h
include(../../../../examples/mobility_examples.pri)
CONFIG += mobility
MOBILITY = location
equals(QT_MAJOR_VERSION, 4):lessThan(QT_MINOR_VERSION, 7){
MOBILITY += bearer
INCLUDEPATH += ../../../../src/bearer
} else {
# use Bearer Management classes in QtNetwork module
}
symbian: {
TARGET.CAPABILITY = Location \
NetworkServices \
ReadUserData \
WriteUserData \
ReadDeviceData \
WriteDeviceData
TARGET.EPOCHEAPSIZE = 1048576 67108864
}
maemo*:CONFIG += manual_test
|