deployment.pri 253 B

12345678910111213
  1. unix:!android {
  2. isEmpty(target.path) {
  3. qnx {
  4. target.path = /tmp/$${TARGET}/bin
  5. } else {
  6. target.path = /opt/$${TARGET}/bin
  7. }
  8. export(target.path)
  9. }
  10. INSTALLS += target
  11. }
  12. export(INSTALLS)