summaryrefslogtreecommitdiff
path: root/app/gdp-hmi-launcher/deployment.pri
diff options
context:
space:
mode:
authorHolger Behrens <holger.behrens@windriver.com>2015-02-13 12:16:29 +0100
committerHolger Behrens <holger.behrens@windriver.com>2015-02-13 12:16:29 +0100
commitd3608e605f336a5c52da33937250ee0994e63cfb (patch)
tree6d6a81c6fdaa82f2742f585252db69ba0e66006b /app/gdp-hmi-launcher/deployment.pri
parent3226fff98ca88b9ee227ae5b55f2e15de21137e7 (diff)
downloadgenivi-demo-platform-hmi-d3608e605f336a5c52da33937250ee0994e63cfb.tar.gz
gdp-hmi-launcher: introduce GDP HMI Launcher app
Signed-off-by: Holger Behrens <holger.behrens@windriver.com>
Diffstat (limited to 'app/gdp-hmi-launcher/deployment.pri')
-rw-r--r--app/gdp-hmi-launcher/deployment.pri27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/gdp-hmi-launcher/deployment.pri b/app/gdp-hmi-launcher/deployment.pri
new file mode 100644
index 0000000..5441b63
--- /dev/null
+++ b/app/gdp-hmi-launcher/deployment.pri
@@ -0,0 +1,27 @@
+android-no-sdk {
+ target.path = /data/user/qt
+ export(target.path)
+ INSTALLS += target
+} else:android {
+ x86 {
+ target.path = /libs/x86
+ } else: armeabi-v7a {
+ target.path = /libs/armeabi-v7a
+ } else {
+ target.path = /libs/armeabi
+ }
+ export(target.path)
+ INSTALLS += target
+} else:unix {
+ isEmpty(target.path) {
+ qnx {
+ target.path = /tmp/$${TARGET}/bin
+ } else {
+ target.path = /opt/$${TARGET}/bin
+ }
+ export(target.path)
+ }
+ INSTALLS += target
+}
+
+export(INSTALLS)