aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/demos/photoviewer/deployment.pri
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@viroteck.net>2016-07-05 17:16:44 +0200
committerRobin Burchell <robin.burchell@viroteck.net>2016-07-05 19:34:05 +0000
commitdffe4ab249ced63255e83942be447df4183bf2f2 (patch)
tree5d673bf43abdbea8d44009ef02a4a1f1c73c0afc /examples/quick/demos/photoviewer/deployment.pri
parent506ae2dba8270341cbe3ee6435baf472b0d1abed (diff)
demos: Fix installation of photoviewer example and add to build
deployment.pri seems suspicious (and qmake errors about it actually), so just use the example install path and trust that it will be okay. Change-Id: Id3b6abd80f84485e006473130873ab89ee11c0d4 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'examples/quick/demos/photoviewer/deployment.pri')
-rw-r--r--examples/quick/demos/photoviewer/deployment.pri23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/quick/demos/photoviewer/deployment.pri b/examples/quick/demos/photoviewer/deployment.pri
deleted file mode 100644
index 839b3b5cac..0000000000
--- a/examples/quick/demos/photoviewer/deployment.pri
+++ /dev/null
@@ -1,23 +0,0 @@
-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)