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>
This commit is contained in:
Bartosz Bilas 2018-03-01 15:16:28 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 7a41e1c672
commit 8092838828

View File

@ -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