deployment.pri 560 B

123456789101112131415161718192021
  1. linux-buildroot-g++ {
  2. message( embedded target-deployment )
  3. # deployment
  4. INSTALLS += target
  5. deployment.files = $$files(*.qml) FontAwesome.otf qmldir
  6. linux-buildroot-g++ {
  7. deployment.path = /usr/qml/QtQuick/FreeVirtualKeyboard
  8. target.path = /usr/lib/qt/plugins/platforminputcontexts
  9. } else {
  10. deployment.path = $$[QT_INSTALL_QML]/QtQuick/FreeVirtualKeyboard
  11. target.path = $$[QT_INSTALL_PLUGINS]/platforminputcontexts
  12. }
  13. INSTALLS += target \
  14. deployment
  15. export(target.path)
  16. }