PDA

View Full Version : Qt 4.5.0 install directory change?



brcain
4th May 2009, 19:58
Hello,

Using the Windows installer, qt-sdk-win-opensource-2009.02.exe, I've noticed that the install directory structure is different for Qt 4.5 than for Qt 4.4?

The Qt 4.5 installer created something like this ...

C:\Qt\4.5.0\bin
\lib
\share
\qt\bin ODD!!!
\qt\include ODD!!!
\qt\lib ODD!!!
\qt\plugin ODD!!!

The older version put all of the contents that are now under C:\Qt\4.5.0\qt into the main Qt directory (C:\Qt\4.5.0). So, the environment variables where something like this ...


QT_INC C:\Qt\4.5.0\include
QT_LIB C:\Qt\4.5.0\lib
QT_TR C:\Qt\4.5.0\translations
PATH C:\Qt\4.5.0\bin;...

With the latest version (unless I copy the 'C:\Qt\4.5.0\qt' subsirectoy items up one level) I'll have odd environemnt variables.


QT_INC C:\Qt\4.5.0\qt\include
QT_LIB C:\Qt\4.5.0\lib;C:\Qt\4.5.0\qt\lib
QT_TR C:\Qt\4.5.0\qt\translations
PATH C:\Qt\4.5.0\bin;C:\Qt\4.5.0\qt\bin;...

Do you know why the extra 'C:\Qt\4.5.0\qt' sibdirectory is there?

BTW, previous versions I have just built from source.

Thanks,
Ben