probonopd / linuxdeployqt

Makes Linux applications self-contained by copying in the libraries and plugins that the application uses, and optionally generates an AppImage. Can be used for Qt and other applications
Other
2.22k stars 414 forks source link

Add Qt6WebEngine support #585

Closed atsushi-yamamoto-signalslot closed 1 year ago

atsushi-yamamoto-signalslot commented 1 year ago

In Qt6WebEngine, as with Qt5WebEngine, it is necessary to copy resources and the executable binary.

I tested creating an AppImage for my application on Ubuntu 20.04 with Qt 6.5.2 using the following command: ./linuxdeployqt AppDir/usr/share/applications/myapp.desktop -appimage -exclude-libs="libnss3.so,libnssutil3.so" (Note that tests/QtWebEngineApplication couldn't be built with Qt 6.5.2)

I appreciate your work. Thank you!

probonopd commented 1 year ago

Thanks @atsushi-yamamoto-signalslot