blob: 367cc4a1f731a1fcc1fff52aac5e596fac86ed90 (
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
|
From aef55eb7b3470ba6dee4abc67acda1d308c90e97 Mon Sep 17 00:00:00 2001
From: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Date: Mon, 4 Apr 2016 14:25:54 +0200
Subject: [PATCH 1/1] remove weird install path for example
the deployment system on top should deal with this.
Upstream-Status: Backport [with adaptations]
Change-Id: I1befb3e0c9bb6546afc59a40e525d1d600475a86
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com>
[gportay: update basic.pro path]
---
examples/virtualkeyboard/basic/basic.pro | 8 ++-----
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/examples/virtualkeyboard/basic/basic.pro b/examples/virtualkeyboard/basic/basic.pro
index 28cc4dc..0f71e0e 100644
--- a/examples/virtualkeyboard/basic/basic.pro
+++ b/examples/virtualkeyboard/basic/basic.pro
@@ -7,12 +7,8 @@ static {
QT += svg
QTPLUGIN += qtvirtualkeyboardplugin
}
-android-no-sdk|!isEmpty(CROSS_COMPILE) {
- TARGETPATH = /data/user/qt/virtualkeyboard/basic
-} else {
- TARGETPATH = $$[QT_INSTALL_EXAMPLES]/virtualkeyboard/basic
-}
-target.path = $$TARGETPATH
+
+target.path = $$[QT_INSTALL_EXAMPLES]/virtualkeyboard/basic
INSTALLS += target
RESOURCES += \
--
2.17.1
|