aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch
blob: 3ff68c8dc5033a8bcea510a9da54839774ab3615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Upstream-Status: Submitted [https://github.com/nemomobile/libconnman-qt/pull/105]

From 48da520b971af69d22e691a0ef6ff1c3ce901f0d Mon Sep 17 00:00:00 2001
From: Andreas Oberritter <obi@opendreambox.org>
Date: Tue, 11 Mar 2014 21:55:37 +0100
Subject: [PATCH] plugin.pro: fix build with custom target suffix

This went unnoticed because of a previously installed libconnman-qt4.

Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
---
 plugin/plugin.pro | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/plugin/plugin.pro b/plugin/plugin.pro
index c9534cf..9cdaa63 100644
--- a/plugin/plugin.pro
+++ b/plugin/plugin.pro
@@ -8,14 +8,18 @@ INCLUDEPATH += ../libconnman-qt
 LIBS += -L../libconnman-qt
 QT -= gui
 
+isEmpty(TARGET_SUFFIX) {
+    TARGET_SUFFIX = qt$$QT_MAJOR_VERSION
+}
+
+LIBS += -l$$qtLibraryTarget(connman-$$TARGET_SUFFIX)
+
 equals(QT_MAJOR_VERSION, 4): {
     QT += declarative
-    LIBS += -lconnman-qt4
 }
 
 equals(QT_MAJOR_VERSION, 5): {
     QT += qml
-    LIBS += -lconnman-qt5
     OTHER_FILES += plugin.json qmldirs
 }
 
-- 
1.8.3.2