i compiled qt-everywhere-opensource-src-4.6.3 succesfully. But not found qtcreator.What is the next step for arm gui development? Thanks
where is qtcreator?
I don't have the Qt Designer on the CD which i got with my mini, therefore i can't make any apps for it. Can somebody mail me the download link for Qt Designer from Trolltech for qtopia 2.2.0 or post it as a download link here. My mail id is tanushri.c [at] gmail [dot] com Regards Tan
Qt creator is an IDE/SDK. It is not a part of the default Qt source. The sources provided on the CD contain the Qt utilities/tools (qmake, designer, uic, etc.). They do not contain the Qt SDK (creator). But they are, as such, sufficient to develop apps. The basic steps to develop apps are: 1- write main and classes 2- cd to the folder where you saved the sources 3- invoke qmake to generate .pro 4- again use qmake to build the project file If you want to use the designer, then you have to add your forms in the .pro file. I suggest you create a virtual linux machine (use virtualbox/VMWare) and install the Qt SDK in it for x86. You can write your apps using Qt creator and test them. To port it on the board, you can use the same source codes (which you created in Qt creator), but use the qmake for arm to compile them. Confusing, right? -Harshad