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
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)
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!