1TARGET = qtgeoservices_osm 2 3QT += location-private positioning-private network concurrent 4 5QT_FOR_CONFIG += location-private 6qtConfig(location-labs-plugin): DEFINES += LOCATIONLABS 7 8HEADERS += \ 9 qgeoserviceproviderpluginosm.h \ 10 qgeotiledmappingmanagerengineosm.h \ 11 qgeotilefetcherosm.h \ 12 qgeomapreplyosm.h \ 13 qgeocodingmanagerengineosm.h \ 14 qgeocodereplyosm.h \ 15 qgeoroutingmanagerengineosm.h \ 16 qgeoroutereplyosm.h \ 17 qplacemanagerengineosm.h \ 18 qplacesearchreplyosm.h \ 19 qplacecategoriesreplyosm.h \ 20 qgeotiledmaposm.h \ 21 qgeofiletilecacheosm.h \ 22 qgeotileproviderosm.h 23 24SOURCES += \ 25 qgeoserviceproviderpluginosm.cpp \ 26 qgeotiledmappingmanagerengineosm.cpp \ 27 qgeotilefetcherosm.cpp \ 28 qgeomapreplyosm.cpp \ 29 qgeocodingmanagerengineosm.cpp \ 30 qgeocodereplyosm.cpp \ 31 qgeoroutingmanagerengineosm.cpp \ 32 qgeoroutereplyosm.cpp \ 33 qplacemanagerengineosm.cpp \ 34 qplacesearchreplyosm.cpp \ 35 qplacecategoriesreplyosm.cpp \ 36 qgeotiledmaposm.cpp \ 37 qgeofiletilecacheosm.cpp \ 38 qgeotileproviderosm.cpp 39 40 41OTHER_FILES += \ 42 osm_plugin.json 43 44PLUGIN_TYPE = geoservices 45PLUGIN_CLASS_NAME = QGeoServiceProviderFactoryOsm 46load(qt_plugin) 47