1

my target to display output is directfb window. i need to develop an qt application. i found developing application in qtcreator is much easier but problem is output will be seen on X11 window. can any one tell me is there way to get it executed on directfb window. i have no search results for this in google. plz help me

i am using xubuntu

thanks

regards rashmi

skaffman
  • 398,947
  • 96
  • 818
  • 769
rashmi
  • 599
  • 4
  • 10
  • 19

2 Answers2

0

In Creator, you should be able to change your build target to a specific version of Qt. First, see if the simulator target for recent Creator versions will cover you. If not, you'll need to download and compile the Qt embedded version you want to target. Then, add that version as one of the Qt Versions and change your build settings to use that version of Qt.

Caleb Huitt - cjhuitt
  • 14,785
  • 3
  • 42
  • 49
  • i have qt-4.7.0 installed. which is configured for embedded x86 platform. so now how do i change build settings in Qtcreator. – rashmi Nov 17 '10 at 03:38
  • 1
    When you build the Qt4 version you'll also want to tell it to use directfb by either the -qt-gfx-directfb or -plugin-gfx-directfb when you configure Qt4. See: http://doc.qt.nokia.com/qt-maemo-4.6/qt-embeddedlinux-directfb.html – Neth Dec 01 '10 at 18:40
0

go to tools->options->qt4 add qt version you have installed in my case qt-4.7 i.e, qt4 version= qt-4.7.0 path to qmake is /path to qt directory/bin/qmake

then rebuild.

you are done with changes you wanted.

rashmi
  • 599
  • 4
  • 10
  • 19