aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickGamepad/deployment.pri
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickGamepad/deployment.pri')
-rw-r--r--examples/quickGamepad/deployment.pri23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/quickGamepad/deployment.pri b/examples/quickGamepad/deployment.pri
new file mode 100644
index 0000000..839b3b5
--- /dev/null
+++ b/examples/quickGamepad/deployment.pri
@@ -0,0 +1,23 @@
+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) {
+ target.path = /opt/$${TARGET}/bin
+ export(target.path)
+ }
+ INSTALLS += target
+}
+
+export(INSTALLS)