From the KDE requirements list: http://www.kde.org/info/requirements/3.5.phpkmare wrote:kde4 will be based on Qt4... and kde 3.5 uses Qt 3 and it can't be compiled with Qt4. Unfortunally we'll have to wait quite a long time for kde4..
Code: Select all
Qt >= 3.3.2I'd say 4.0 > Qt >=3.3.2Codo wrote:From the KDE requirements list: http://www.kde.org/info/requirements/3.5.phpkmare wrote:kde4 will be based on Qt4... and kde 3.5 uses Qt 3 and it can't be compiled with Qt4. Unfortunally we'll have to wait quite a long time for kde4..
Code: Select all
Qt >= 3.3.2
QT += QT3SUPPORT in the *.pro file only includes the Q3* classes, but you still have to go through the code and change for example QVBox to Q3Vbox. It's not an automatic process. Unfortunatelly, Qt4 is source and binary incompatible with Qt3...somnium wrote:Well,
QT4 comes with a lot of API changes, and a Q3Support, which maybe won't work for every application.
QT3 Support is added by the value QT += QT3SUPPORT in the *.pro file. Think that's posible to add.
On my system I work with qt3 and qt4 and setting the CLFAGS and LDFLAGS to the qt4/qt4 include and library directories.