Ubuntu Touch app with c++ core and QML interface. How to create?
To create Ubuntu touch applicaion with c++ core with UI in QML follow following steps:
- Open
Qt Creator
- Press
ctrl
+n
to create a new project - Choose project as
Applications
- select
Qt Quick Application (Built-in Elements)
This will create a project with UI in QML and core in c++ there will be directory in project directory named sources
. It will contain main.cpp
to start your application which will be loading the main.qml
.