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

        android_install: {
            target.path=/libs/$$ANDROID_TARGET_ARCH/
            INSTALLS *= target
        }
    }
}