summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/android/android.prf
blob: 7d77598e76cbfe8a21da2e3e5ddccf207ce7c968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
contains(TEMPLATE, ".*app") {
    !android_app {
        !contains(TARGET, ".so"): TARGET = lib$${TARGET}.so
        QMAKE_LFLAGS += -Wl,-soname,$$shell_quote($$TARGET)

        android_install {
            target.path=/libs/$$ANDROID_TARGET_ARCH/
            INSTALLS *= target
        }
    }
} else: contains(TEMPLATE, "lib"):!QTDIR_build:android_install {
    target.path = /libs/$$ANDROID_TARGET_ARCH/
    INSTALLS *= target
}