123456789101112131415161718192021 |
- linux-buildroot-g++ {
- message( embedded target-deployment )
- # deployment
- INSTALLS += target
- deployment.files = $$files(*.qml) FontAwesome.otf qmldir
- linux-buildroot-g++ {
- deployment.path = /usr/qml/QtQuick/FreeVirtualKeyboard
- target.path = /usr/lib/qt/plugins/platforminputcontexts
- } else {
- deployment.path = $$[QT_INSTALL_QML]/QtQuick/FreeVirtualKeyboard
- target.path = $$[QT_INSTALL_PLUGINS]/platforminputcontexts
- }
- INSTALLS += target \
- deployment
- export(target.path)
- }
|