probably your PATH system variable points to the Qt3 bin directory before the Qt4 one.
You can either call the Qt4 qmake directly, or, change PATH so that the Qt4 biin directory will come before the Qt3 bin directory.
probably your PATH system variable points to the Qt3 bin directory before the Qt4 one.
You can either call the Qt4 qmake directly, or, change PATH so that the Qt4 biin directory will come before the Qt3 bin directory.
==========================signature=============== ==================
S.O.L.I.D principles (use them!):
https://en.wikipedia.org/wiki/SOLID_...iented_design)
Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.
wsinw (29th May 2007)
Thank you.
but how to change defualt PATH in linux.
If your shell is bash, find the startup scrip in your home dir and add
QTDIR=path to your qt dir
export QTDIR
PATH=$QTDIR/bin:$PATH
export PATH
Bookmarks