blob: 74e27dc9a199eb49c1d395cdb165e144dcc2d87f (
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
|
TARGET = qtgeoservices_osm
QT += location-private positioning-private network concurrent
QT_FOR_CONFIG += location-private
qtConfig(location-labs-plugin): DEFINES += LOCATIONLABS
HEADERS += \
qgeoserviceproviderpluginosm.h \
qgeotiledmappingmanagerengineosm.h \
qgeotilefetcherosm.h \
qgeomapreplyosm.h \
qgeocodingmanagerengineosm.h \
qgeocodereplyosm.h \
qgeoroutingmanagerengineosm.h \
qgeoroutereplyosm.h \
qplacemanagerengineosm.h \
qplacesearchreplyosm.h \
qplacecategoriesreplyosm.h \
qgeotiledmaposm.h \
qgeofiletilecacheosm.h \
qgeotileproviderosm.h
SOURCES += \
qgeoserviceproviderpluginosm.cpp \
qgeotiledmappingmanagerengineosm.cpp \
qgeotilefetcherosm.cpp \
qgeomapreplyosm.cpp \
qgeocodingmanagerengineosm.cpp \
qgeocodereplyosm.cpp \
qgeoroutingmanagerengineosm.cpp \
qgeoroutereplyosm.cpp \
qplacemanagerengineosm.cpp \
qplacesearchreplyosm.cpp \
qplacecategoriesreplyosm.cpp \
qgeotiledmaposm.cpp \
qgeofiletilecacheosm.cpp \
qgeotileproviderosm.cpp
OTHER_FILES += \
osm_plugin.json
PLUGIN_TYPE = geoservices
PLUGIN_CLASS_NAME = QGeoServiceProviderFactoryOsm
load(qt_plugin)
|