From 6eeda17e1e23b785b94592f8192c65c9c3b9d919 Mon Sep 17 00:00:00 2001 From: Paolo Angelelli Date: Tue, 20 Sep 2016 18:46:51 +0200 Subject: Add qtconcurrent dependency to location Deploying on android fails to deploy the osm plugin, because it depends on qtconcurrent, and the android package generator apparently does not recursively resolve dependencies. One way to solve this is to make location depend on qtconcurrent on android builds, so that libQt5Concurrent.so will be added to the android package Change-Id: I781e2a0c2051cf04002c85dce669947619873aa3 Reviewed-by: Alex Blasche --- src/location/location.pro | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/location/location.pro') diff --git a/src/location/location.pro b/src/location/location.pro index 052a1970..c47c411b 100644 --- a/src/location/location.pro +++ b/src/location/location.pro @@ -1,6 +1,11 @@ TARGET = QtLocation QT = core-private positioning-private +android { + # adding qtconcurrent dependency here for the osm plugin + QT += concurrent +} + MODULE_PLUGIN_TYPES = \ geoservices -- cgit v1.2.1