You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
|
|
QT += location-private positioning-private network |
|
|
|
contains(QT_VERSION, 5.5.1) { |
|
message(Using Local QtLocation headers for Qt 5.5.1) |
|
INCLUDEPATH += \ |
|
$$PWD/qtlocation/include \ |
|
} else { |
|
message(Using Default QtLocation headers) |
|
INCLUDEPATH += $$QT.location.includes |
|
} |
|
|
|
HEADERS += \ |
|
$$PWD/QGCMapEngine.h \ |
|
$$PWD/QGCMapEngineData.h \ |
|
$$PWD/QGCMapTileSet.h \ |
|
$$PWD/QGCMapUrlEngine.h \ |
|
$$PWD/QGCTileCacheWorker.h \ |
|
$$PWD/QGeoCodeReplyQGC.h \ |
|
$$PWD/QGeoCodingManagerEngineQGC.h \ |
|
$$PWD/QGeoMapReplyQGC.h \ |
|
$$PWD/QGeoServiceProviderPluginQGC.h \ |
|
$$PWD/QGeoTileFetcherQGC.h \ |
|
$$PWD/QGeoTiledMappingManagerEngineQGC.h \ |
|
$$PWD/MapProvider.h \ |
|
$$PWD/GoogleMapProvider.h \ |
|
|
|
SOURCES += \ |
|
$$PWD/QGCMapEngine.cpp \ |
|
$$PWD/QGCMapTileSet.cpp \ |
|
$$PWD/QGCMapUrlEngine.cpp \ |
|
$$PWD/QGCTileCacheWorker.cpp \ |
|
$$PWD/QGeoCodeReplyQGC.cpp \ |
|
$$PWD/QGeoCodingManagerEngineQGC.cpp \ |
|
$$PWD/QGeoMapReplyQGC.cpp \ |
|
$$PWD/QGeoServiceProviderPluginQGC.cpp \ |
|
$$PWD/QGeoTileFetcherQGC.cpp \ |
|
$$PWD/QGeoTiledMappingManagerEngineQGC.cpp \ |
|
$$PWD/MapProvider.cpp \ |
|
$$PWD/GoogleMapProvider.cpp \ |
|
|
|
OTHER_FILES += \ |
|
$$PWD/qgc_maps_plugin.json
|
|
|