QGCLocationPlugin.pri 1.55 KB
Newer Older
dogmaphobic's avatar
dogmaphobic committed
1 2 3 4 5 6 7 8 9 10 11 12 13

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 += \
dogmaphobic's avatar
dogmaphobic committed
14 15 16 17 18 19 20 21 22 23 24
    $$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 \
25
    $$PWD/MapProvider.h \
26
    $$PWD/ElevationMapProvider.h \
27
    $$PWD/GoogleMapProvider.h \
Pierre TILAK's avatar
Pierre TILAK committed
28
    $$PWD/BingMapProvider.h \
29 30
    $$PWD/GenericMapProvider.h \
    $$PWD/EsriMapProvider.h \
Pierre TILAK's avatar
Pierre TILAK committed
31
    $$PWD/MapboxMapProvider.h \
32 33
    $$PWD/QGCTileSet.h \

dogmaphobic's avatar
dogmaphobic committed
34 35

SOURCES += \
dogmaphobic's avatar
dogmaphobic committed
36 37 38 39 40 41 42 43 44 45
    $$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 \
46
    $$PWD/MapProvider.cpp \
47
    $$PWD/ElevationMapProvider.cpp \
48
    $$PWD/GoogleMapProvider.cpp \
Pierre TILAK's avatar
Pierre TILAK committed
49
    $$PWD/BingMapProvider.cpp \
50 51
    $$PWD/GenericMapProvider.cpp \
    $$PWD/EsriMapProvider.cpp \
Pierre TILAK's avatar
Pierre TILAK committed
52
    $$PWD/MapboxMapProvider.cpp \
dogmaphobic's avatar
dogmaphobic committed
53 54 55

OTHER_FILES += \
    $$PWD/qgc_maps_plugin.json