From Qt Design to QT Creator for MCUs
-
wrote on 21 Sept 2020, 15:18 last edited by
I created a QT design with a timeline. I bring that qml and images into my MCU project. I have ***import QtQuick.Timeline 1.0 in the qml file. But I get the error: QtQuick.TImeline could not be found in the include paths. How do I resolve this issue?
-
wrote on 22 Sept 2020, 20:05 last edited by
Which version of Qt for MCUs are you using? You need at least 1.3.
There is an example in the MCU SDK, in <Qt_for_MCUs_install_dir> examples/timeline. Don't forget to link the application to correct module with:
target_link_libraries (<project_name> Qul::QuickUltralite Qul::QuickUltraliteTimeline)
-
wrote on 22 Sept 2020, 07:01 last edited by PavloPonomarov
Your MCU project should use at least Qt 5.14 according to this page. Check your project settings
-
wrote on 22 Sept 2020, 20:05 last edited by
Which version of Qt for MCUs are you using? You need at least 1.3.
There is an example in the MCU SDK, in <Qt_for_MCUs_install_dir> examples/timeline. Don't forget to link the application to correct module with:
target_link_libraries (<project_name> Qul::QuickUltralite Qul::QuickUltraliteTimeline)
-
Which version of Qt for MCUs are you using? You need at least 1.3.
There is an example in the MCU SDK, in <Qt_for_MCUs_install_dir> examples/timeline. Don't forget to link the application to correct module with:
target_link_libraries (<project_name> Qul::QuickUltralite Qul::QuickUltraliteTimeline)
1/4