aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/demos/photoviewer/deployment.pri
blob: 0d58a25c611d2ccc385f42417f9e388e26ba7ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)