deployment.pri
changeset 0 c0e13d2503b9
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/deployment.pri	Tue May 27 12:00:47 2014 +0200
     1.3 @@ -0,0 +1,27 @@
     1.4 +android-no-sdk {
     1.5 +    target.path = /data/user/qt
     1.6 +    export(target.path)
     1.7 +    INSTALLS += target
     1.8 +} else:android {
     1.9 +    x86 {
    1.10 +        target.path = /libs/x86
    1.11 +    } else: armeabi-v7a {
    1.12 +        target.path = /libs/armeabi-v7a
    1.13 +    } else {
    1.14 +        target.path = /libs/armeabi
    1.15 +    }
    1.16 +    export(target.path)
    1.17 +    INSTALLS += target
    1.18 +} else:unix {
    1.19 +    isEmpty(target.path) {
    1.20 +        qnx {
    1.21 +            target.path = /tmp/$${TARGET}/bin
    1.22 +        } else {
    1.23 +            target.path = /opt/$${TARGET}/bin
    1.24 +        }
    1.25 +        export(target.path)
    1.26 +    }
    1.27 +    INSTALLS += target
    1.28 +}
    1.29 +
    1.30 +export(INSTALLS)