The goal of this chapter was to run our application on the Target. Hopefully, you were able to run it successfully.
The first thing we learned was how to configure Qt Creator for cross-compilation. This process can be applied to any system where you need to do cross-compilation, not just with our Target. We then learned how to deploy (or transfer) our code to the Target.
Once we had deployed our code, we learned another way of starting the code on the Target that did not require Qt Creator. We also saw how easy it was to start debugging code on the Target.
Finally, we learned a little about Qt's layout system for GUIs. It allowed us to make the display look good both on the Host and the Target, even though they had different screen sizes.
You should now know enough to be able to run some of the examples that came with Qt 5.12.0 on the Target. Try it!
In the Chapter...