Qt4.8 to Qt5 configuration help needed, my config does not apply
Hi,
So this is the config I use for Qt 4.8,
Code:
./configure -opensource -nomake tests -confirm-license -nomake docs -nomake demos -no-accessibility -no-qt3support -fast -qt-sql-sqlite -no-phonon -no-multimedia -no-webkit -no-declarative -no-exceptions -arch x86 -arch x86_64
So my question is what applies now and what doesn't and why? I know that qt3support no longer applies, as well as choosing arch. But why can I not disable webkit for example? I don't really want to be build these, or I take it I am stuck with them for now. I am the modules that can be toggled on or off are those that are listed in ./configure --help.
Thanks
Re: Qt4.8 to Qt5 configuration help needed, my config does not apply
Module names in Qt5 have changed. Basically you may build only QtEssentials part and skip QtAddOns. I think the most comprehensive guide to building Qt5 is this: http://qt-project.org/wiki/Building_Qt_5_from_Git
Re: Qt4.8 to Qt5 configuration help needed, my config does not apply
Quote:
Originally Posted by
wysota
Ah that's better, so building from git offers the best solution.
Thanks