deployment.pri
author sl
Tue, 27 May 2014 12:00:47 +0200
changeset 0 c0e13d2503b9
permissions -rw-r--r--
First contribution.
Here is a basic QtQuick application based on Qt 5.3.
sl@0
     1
android-no-sdk {
sl@0
     2
    target.path = /data/user/qt
sl@0
     3
    export(target.path)
sl@0
     4
    INSTALLS += target
sl@0
     5
} else:android {
sl@0
     6
    x86 {
sl@0
     7
        target.path = /libs/x86
sl@0
     8
    } else: armeabi-v7a {
sl@0
     9
        target.path = /libs/armeabi-v7a
sl@0
    10
    } else {
sl@0
    11
        target.path = /libs/armeabi
sl@0
    12
    }
sl@0
    13
    export(target.path)
sl@0
    14
    INSTALLS += target
sl@0
    15
} else:unix {
sl@0
    16
    isEmpty(target.path) {
sl@0
    17
        qnx {
sl@0
    18
            target.path = /tmp/$${TARGET}/bin
sl@0
    19
        } else {
sl@0
    20
            target.path = /opt/$${TARGET}/bin
sl@0
    21
        }
sl@0
    22
        export(target.path)
sl@0
    23
    }
sl@0
    24
    INSTALLS += target
sl@0
    25
}
sl@0
    26
sl@0
    27
export(INSTALLS)