summaryrefslogtreecommitdiff
path: root/src/location/configure.json
Commit message (Collapse)AuthorAgeFilesLines
* geoservices_mapboxgl depends on opengl and guiLiang Qi2019-02-061-0/+1
| | | | | | Change-Id: I0ada3ad1bbb27f3947497adf4bfeb1469f4a6256 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io> Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
* Bump Mapbox GL to the latest versionSudarsana Babu Nagineni2018-08-141-1/+1
| | | | | | | | | | | | | | Bumps Mapbox GL to a new version that fixes the compilation errors on QNX 7. Also, enable Mapbox GL Native plugin for QNX. mapbox-gl-native @ 27b21363e62c105db0b040b4c5a5ef31170ebd30 Task-number: QTBUG-59685 Change-Id: Icc70ab53ba6f76e319feb53858f3614f3edca3e1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
* Merge remote-tracking branch 'origin/wip/navigation' into 5.11Paolo Angelelli2018-02-201-1/+0
|\ | | | | | | Change-Id: Ie32717a594ad7a82d1c8eee238ce378bcfadc2ac
| * Enable Qt.labs.location and locationlabs modules by defaultPaolo Angelelli2018-02-191-1/+0
| | | | | | | | | | | | | | | | | | These are experimental anyway, and to be used they have to be explicitly imported or added in a pro file. Change-Id: I7ab4391db5d3f22d8cd4c1819ca0610b8739ff7f Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: BogDan Vatra <bogdan@kdab.com>
* | Properly namespace labs plugin configure featurePaolo Angelelli2018-02-191-2/+2
|/ | | | | | | | | This also changes underscore with dashes, so that only dashes have to be used in enabling a feature in a configure line. Change-Id: I83d3412382ed2530dcd574a1c4b7bff9f20cfd6a Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
* Rename configure option labs_plugin into locationlabs_pluginPaolo Angelelli2018-01-291-2/+2
| | | | | | | This to avoid potential clashes, as "labs_plugin" is too generic. Change-Id: I5a797c8f15cd71b9b423fbe8ddfc8733fa0b2854 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
* Introduce Qt.location.labsPaolo Angelelli2018-01-271-0/+8
| | | | | | | | | | | Introducing the new labs qml plugin, Qt.labs.location, and associated qt module. The intended use is to introduce and validate new QML API before they can be moved into QtLocation. Change-Id: If70d1dcedaf708be96e918dc5e25578df93db370 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
* Disable Mapbox-GL with the Intel compilerThiago Macieira2017-12-131-1/+1
| | | | | | | | | | | | | | | | | | | The MBGL code uses C++ Standard Library functionality that does not compile with ICC. Or with QNX. Or MSVC. So, great job in the Standard Library being cross-platform. When using gcc 6 headers: /usr/include/c++/6/experimental/optional(720): error: more than one instance of overloaded function "__constexpr_addressof" matches the argument list: [...] detected during instantiation of "const _Tp *std::experimental::fundamentals_v1::optional<_Tp>::operator->() const [with _Tp=std::string]" at line 47 of "platform/qt/src/http_request.cpp" When using gcc 7 headers: /usr/include/c++/7/ext/new_allocator.h(136): error: function "std::pair<_T1, _T2>::pair(const std::pair<_T1, _T2> &) [with _T1=const std::string, _T2=mbgl::gl::VertexArray]" (declared at line 292 of "/usr/include/c++/7/bits/stl_pair.h") cannot be referenced -- it is a deleted function Change-Id: I9741f017961b410c910dfffd14ff5d8b5f5120d3 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io> Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io>
* Fix Mapbox GL plugin OpenGL usageThiago Marcos P. Santos2017-11-081-1/+1
| | | | | | | | | | | | | | | | Previously we were linking directly with the OpenGL library available in the system. On Windows for instance the only option was ANGLE. Now Mapbox GL is using OpenGL through QOpenGLFunctions and shall offer much better compatibility. Task-number: QTBUG-62108 Task-number: QTBUG-61767 Task-number: QTBUG-60897 Change-Id: Iabd29ff6c0b6daf14373508d4847344c07d01a57 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
* Windows/MinGW: Build MapBoxGL only when Qt is built with ANGLEFriedemann Kleint2017-10-241-1/+1
| | | | | | | | | | The code links against functions of OpenGL versions > 1.1, which Windows' opengl32.dll does not provide. Task-number: QTBUG-62417 Change-Id: I0fa1ba6ef3fa3ed714e261369df1292018f5568b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
* Add a configure feature for each geoservice pluginPaolo Angelelli2017-08-301-0/+70
This patch makes it possible to disable geoservice plugins at configuration time using the QtLite -no-feature-geoservices_xxx syntax. Change-Id: I276382833db8cfca27383705cbb3f994ced47cb3 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>