-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathgooglemaps.pro
70 lines (60 loc) · 1.79 KB
/
googlemaps.pro
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
TEMPLATE = lib
CONFIG += plugin
CONFIG += relative_qt_rpath # Qt's plugins should be relocatable
SRCMOC = .moc
MOC_DIR = .moc
OBJECTS_DIR = .obj
android {
TARGET = plugins_geoservices_qtgeoservices_googlemaps
} else {
TARGET = qtgeoservices_googlemaps
}
PLUGIN_TYPE = geoservices
PLUGIN_CLASS_NAME = QGeoServiceProviderFactoryGooglemaps
target.path = $$[QT_INSTALL_PLUGINS]/$$PLUGIN_TYPE
INSTALLS += target
TARGET = $$qt5LibraryTarget($$TARGET)
qtHaveModule(location-private) {
QT += location-private
} else {
QT += location
}
qtHaveModule(positioning-private) {
QT += positioning-private
} else {
QT += positioning
}
QT += network
INCLUDEPATH += ../ ./
HEADERS += \
qgeoserviceproviderplugingooglemaps.h \
qgeocodingmanagerenginegooglemaps.h \
qgeocodereplygooglemaps.h \
qgeoroutingmanagerenginegooglemaps.h \
qgeoroutereplygooglemaps.h \
qplacemanagerenginegooglemaps.h \
qplacesearchreplygooglemaps.h \
qplacecategoriesreplygooglemaps.h \
qgeomapreplygooglemaps.h \
qgeotiledmapgooglemaps.h \
qgeotiledmappingmanagerenginegooglemaps.h \
qgeotilefetchergooglemaps.h \
qplacesearchsuggestionreplyimpl.h \
qgeoerror_messages.h
SOURCES += \
qgeoserviceproviderplugingooglemaps.cpp \
qgeocodingmanagerenginegooglemaps.cpp \
qgeocodereplygooglemaps.cpp \
qgeoroutingmanagerenginegooglemaps.cpp \
qgeoroutereplygooglemaps.cpp \
qplacemanagerenginegooglemaps.cpp \
qplacesearchreplygooglemaps.cpp \
qplacecategoriesreplygooglemaps.cpp \
qgeomapreplygooglemaps.cpp \
qgeotiledmapgooglemaps.cpp \
qgeotiledmappingmanagerenginegooglemaps.cpp \
qgeotilefetchergooglemaps.cpp \
qplacesearchsuggestionreplyimpl.cpp \
qgeoerror_messages.cpp
OTHER_FILES += \
googlemaps_plugin.json