Jump to Navigation

Create a basic MeeGo application

This short tutorial describes how to create a very basic Qt application for MeeGo.

Start Qt Creator

Start the New Project Wizard

  • Select menu item: File, New File or Project
  • Select Qt4 Gui Application

qt6.png

Select a name and path for the project. We will call our project "HelloMeeGo"
qt6.png

Click "Next" through the rest of the wizard screens.
qt7.png
qt8.png
qt9.png

The project is now created. We can build and run it at this point.
qt10.png

Select the main window cpp file to edit it.
qt11.png

Add the highlighted lines below to your file to create a title, icon, menu, and label. For simplicity we borrow the nautilus icon.
qt16.png

Build the project and run.
qt17.png

Congratulations You have created your first MeeGo application.