(C++) 'Hello Qt' using Qt Creator under Ubuntu for Symbian

January 25, 2018 · View on GitHub

 

 

 

 

 

(C++) Qt CreatorUbuntuSymbianMobile 'Hello Qt' using Qt Creator under Ubuntu for Symbian

 

This page shows a Hello Qt program using the Qt Creator IDE under the Ubuntu operating system for the Symbian platform.

 

 

 

 

 

 

Technical facts

 

Application type(s)

Operating system(s) or programming environment(s)

IDE(s):

Project type:

C++ standard:

Compiler(s):

Libraries used:

  • Qt Qt: version 4.7.0 (32 bit)

 

 

 

 

 

Qt project file: CppHelloQtQtCreatorUbuntuSymbian.pro

 


#------------------------------------------------- # # Project created by QtCreator 2011-01-26T12:04:28 # #------------------------------------------------- QT       += core gui TARGET = CppHelloQtQtCreatorUbuntuSymbian TEMPLATE = app SOURCES += main.cpp\         dialog.cpp HEADERS  += dialog.h FORMS    += dialog.ui CONFIG += mobility MOBILITY = symbian {     TARGET.UID3 = 0xe416ef42     # TARGET.CAPABILITY +=     TARGET.EPOCSTACKSIZE = 0x14000     TARGET.EPOCHEAPSIZE = 0x020000 0x800000 }

 

 

 

 

 

dialog.cpp

 


 

 

 

 

 

dialog.h

 


 

 

 

 

 

main.cpp