diff options
author | Paolo Angelelli <paolo.angelelli@qt.io> | 2018-11-11 14:16:49 +0100 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@qt.io> | 2018-11-28 18:45:36 +0000 |
commit | be0658bfdb37de213f6b54837706aabc2d088d62 (patch) | |
tree | 99444eee90e4e69e787289c280218d2474f787aa /src/location/maps/maps.pri | |
parent | 9307404d2dcb0b53d0dfcad6c28677cc2aba4a12 (diff) | |
download | qtlocation-be0658bfdb37de213f6b54837706aabc2d088d62.tar.gz |
Make tiled renderer and QGeoProjectionWebMercator debuggable
This patch introduces a new macro, QT_LOCATION_DEBUG, that, when
fed via qmake command line, changes the scope of some members,
adds some extra members and some extra data dumping into these
members.
In this way external code can inspect the state of the renderer
in order to debug it.
The patch also moves a few classes into separate files, as well
as privately exporting them.
Change-Id: I32a042863f78dcd10f94b0b7fe8b90f3fc486891
Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'src/location/maps/maps.pri')
-rw-r--r-- | src/location/maps/maps.pri | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/location/maps/maps.pri b/src/location/maps/maps.pri index b5be4601..68e80442 100644 --- a/src/location/maps/maps.pri +++ b/src/location/maps/maps.pri @@ -62,6 +62,8 @@ PRIVATE_HEADERS += \ maps/qgeoprojection_p.h \ maps/qnavigationmanagerengine_p.h \ maps/qnavigationmanager_p.h \ + maps/qgeocameratiles_p_p.h \ + maps/qgeotiledmapscene_p_p.h \ maps/qcache3q_p.h SOURCES += \ @@ -100,3 +102,4 @@ SOURCES += \ maps/qnavigationmanagerengine.cpp \ maps/qnavigationmanager.cpp \ maps/qgeoprojection.cpp + |