deployment.pri
author sl
Wed, 28 May 2014 17:08:47 +0200
changeset 10 64cfde8062c7
permissions -rw-r--r--
Adding brightness slider and an option to connect display on start-up.
Both brightness and connect options are persisted.
     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)