diff options
author | Bartosz Bilas <b.bilas@grinn-global.com> | 2018-03-01 15:16:28 +0100 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2018-04-01 23:48:30 +0200 |
commit | 80928388286b6f25a9e70466dba57aa0587db8c0 (patch) | |
tree | 3e2639eee49ac786b3c49d7fdb1125ec2c48797a | |
parent | 7a41e1c672fdb2b6e7f70dbdf117d0fac3a79a46 (diff) | |
download | buildroot-80928388286b6f25a9e70466dba57aa0587db8c0.tar.gz buildroot-80928388286b6f25a9e70466dba57aa0587db8c0.zip |
package/qt5/qt5scxml: install missing QML module
Fixes:
qrc:/MainUI.qml:2 module "QtScxml" is not installed
Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
Reviewed-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/qt5/qt5scxml/qt5scxml.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/qt5/qt5scxml/qt5scxml.mk b/package/qt5/qt5scxml/qt5scxml.mk index 2d197a2bca..b6281975c6 100644 --- a/package/qt5/qt5scxml/qt5scxml.mk +++ b/package/qt5/qt5scxml/qt5scxml.mk @@ -35,6 +35,10 @@ define QT5SCXML_INSTALL_TARGET_LIBS endef endif +define QT5SCXML_INSTALL_TARGET_QMLS + cp -dpfr $(STAGING_DIR)/usr/qml/QtScxml/ $(TARGET_DIR)/usr/qml/ +endef + ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) define QT5SCXML_INSTALL_TARGET_EXAMPLES cp -dpfr $(STAGING_DIR)/usr/lib/qt/examples/scxml $(TARGET_DIR)/usr/lib/qt/examples/ @@ -43,6 +47,7 @@ endif define QT5SCXML_INSTALL_TARGET_CMDS $(QT5SCXML_INSTALL_TARGET_LIBS) + $(QT5SCXML_INSTALL_TARGET_QMLS) $(QT5SCXML_INSTALL_TARGET_EXAMPLES) endef |