summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@theqtcompany.com>2015-05-26 13:00:29 +0300
committerPasi Keränen <pasi.keranen@digia.com>2015-05-26 13:57:01 +0000
commit1024254a08014f775227bac5486be8ebbf0f70e7 (patch)
tree8d06136c79a571964ea1704e462d19bebae2a5ac
parent3e89b26240c6f5cbe0a9ad50c256bcada2875a5a (diff)
Added missing deployment file for creator template
Change-Id: I1d72a656452002044cce8ee2807a9171f3b96f0e Reviewed-by: Pasi Keränen <pasi.keranen@digia.com>
-rw-r--r--creatortemplates/qtcanvas3d/deployment.pri27
1 files changed, 27 insertions, 0 deletions
diff --git a/creatortemplates/qtcanvas3d/deployment.pri b/creatortemplates/qtcanvas3d/deployment.pri
new file mode 100644
index 0000000..5441b63
--- /dev/null
+++ b/creatortemplates/qtcanvas3d/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)