Re: How to install Qt ???
Hi
In my opinion you have installed Qt correctly, the problem is that make utility is not on your system. I am new to this also, but I have seen that error before, and it looks like make is not on your system.
Without QT, what do you use to compile your 'other' programs? do you use make?
Did you path the location of your make utility? compiler tools..etc?
This link has almost everything you need http://doc.trolltech.com/4.4/index.html
I am using 4.4 version, but you can find the other versions in that same area. Or just change the url to 4.0, 3.3..etc.
Re: How to install Qt ???
Assuming you have installed Dev-Cpp in C:\Dev-Cpp
you should mention that path when installing qt-win-opensource-4.4.1-mingw.exe, when it asks for mingw.
After you install with the path of Dev-cpp, you should be able to run the qt apps with the console that is there in "Start->All Programs->Qt by Trolltech->Qt{version} command prompt"
But if you want to compile from cmd, and run apps with double clicks,
Just create environment variables as shown in Qt{version} command prompt
Assuming you know how to add env variables in windows, just
Add QTDIR & QMAKESEC to environment variables
and
append QTDIR/bin to PATH
restart the computer, everything should work fine.
You can ask if you want more detailed explanation. I might be slow in replying, though.
Re: How to install Qt ???
There You can find everything:
turtorial.
Good luck ;)
Re: How to install Qt ???
Guys thank you soooo much. Now I did it successfully. :D :D :D
I installed it on Backtrack3. Working 100%.
This is how I did it :
Code:
cd /usr/local
wget ftp://ftp.trolltech.no/qt/source/qt-x11-opensource-src-4.4.3.tar.gz
tar -zxvf qt-x11-opensource-src-4.4.3.tar.gz
cd qt-x11-opensource-src-4.4.3
./configure -qt-gif -stl -xinerama -sm -no-exceptions
make install
Thank you guys for helping me.