blob: b380e4a47385ea1a5ece15eb8a3d5c71c8ceff2d (
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
|
QT += network
TARGET = GeoServiceDemo
TEMPLATE = app
INCLUDEPATH += ../../../../src/location \
../../../../src/location/maps
SOURCES += main.cpp\
routepresenter.cpp \
placepresenter.cpp \
tabbedwindow.cpp \
routetab.cpp \
geocodingtab.cpp \
revgeocodingtab.cpp \
directionstab.cpp \
servicestab.cpp
HEADERS += routepresenter.h \
placepresenter.h \
tabbedwindow.h \
routetab.h \
geocodingtab.h \
revgeocodingtab.h \
directionstab.h \
servicestab.h
RESOURCES += geoservicedemo.qrc
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
}
maemo*:CONFIG += manual_test
|