Upgrading old application from QT4 to QT6 some librarys seem to be removed?
Unsolved
Qt 6
-
Porting directly from Qt4 to Qt6 is not that easy. Maybe you should port to Qt5.15 first and then to Qt6. When you use qmake or cmake you don't have to take care for qtmain. With QtWebKit you will have no luck - this was replaced by QtWebEngine.
-
Note the 4 in your lib's names. You'll need to migrate them first so QtGui4.lib -> Qt6Gui.lib and so on.
qtmain.lib is now called Qt6EntryPoint.libQtWebkit, as Christian mentioned, is no longer part of Qt and was replaced by QtWebEngine.