mvasilchuk / yasem

GNU General Public License v2.0
77 stars 52 forks source link

compiling with qt 5.13.0 on latest macos #47

Open AlJohri opened 5 years ago

AlJohri commented 5 years ago

I'm trying to port from QtWebKit -> QtWebEngine using https://wiki.qt.io/QtWebEngine/Porting_from_QtWebKit.

I changed webkit -> webengine and webkitwidgets -> webenginewidgets in plugins/yasem-web-browser/yasem-web-browser.pro.

And changed the references to QWebPage and QWebView.

rg QWebPage --files-with-matches | xargs gsed -i 's/QWebPage/QWebEnginePage/g'
rg QWebView --files-with-matches | xargs gsed -i 's/QWebView/QWebEngineView/g'

I'm currently running into:

fatal error: 'QWebPluginFactory' file not found
fatal error: 'QWebInspector' file not found

Any ideas?