arun shyam wrote: > I have installed all qt packages .What do you mean by qt headers and > how do we specify its path... The Qt libraries are required to run a Qt application.
Qt headers and libraries are required to build a Qt application (they tell the compiler how to use the library). Qt is the GUI toolkit from trolltech. The headers are installed (on Debian) into /usr/include/qt4/ I am assuming that valkyrie uses Qt4 (the latest) not Qt3. If you are using a Debian derived system, you probably did apt-get install libqt4-mt to install QT (this is the threading-aware version) This only installs what is needed to run pre-built qt programs. To build QT programs you also need to do apt-get install libqt4-dev which will install the qt headers. On redhat derived systems, try replacing "apt-get" with "yum". For other systems try using the package manager. HTH, Colin S. Miller ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
