Is this a way to develop Qt for a bare metal system?
Not.
Does Qt work on a system without an OS?
Not.
Bare Metal means that you usually have several KB of RAM and ROM.
I think you are misleading Qt (framework) with QtCreator (IDE). Tim Sander explains this explicitly here at Qt Developer Days in 2013.
This plugin is used to develop small software for such platforms, but without using the Qt framework itself.
In other words, you can still use the general functionality of the integrated development environment.
Thus, this is not a runtime helper, but an auxiliary development and build assistant. You can use qmake to create binaries for such very small embedded environments.
Here you can find additional information in the official documentation .
lpapp
source share