deployment.pri
author sl
Tue, 17 Jun 2014 09:49:12 +0200
changeset 36 f2a9369e7fb9
permissions -rw-r--r--
Adding reset function called when changing font.
     1 android-no-sdk {
     2     target.path = /data/user/qt
     3     export(target.path)
     4     INSTALLS += target
     5 } else:android {
     6     x86 {
     7         target.path = /libs/x86
     8     } else: armeabi-v7a {
     9         target.path = /libs/armeabi-v7a
    10     } else {
    11         target.path = /libs/armeabi
    12     }
    13     export(target.path)
    14     INSTALLS += target
    15 } else:unix {
    16     isEmpty(target.path) {
    17         qnx {
    18             target.path = /tmp/$${TARGET}/bin
    19         } else {
    20             target.path = /opt/$${TARGET}/bin
    21         }
    22         export(target.path)
    23     }
    24     INSTALLS += target
    25 }
    26 
    27 export(INSTALLS)