linuxdeploy-plugin-qt
linuxdeploy-plugin-qt copied to clipboard
Qt plugin for linuxdeploy, bundling Qt resources, plugins, QML files and a lot more.
When you have a release + debug build of Qt, there is a `.so.x.debug` file for every shared library. Those get deployed, because plugins are often deployed by iterating over...
Getting this error when using Qt 6's sql plugin. Interestingly, it's deployed to a different directory: ``` $ ls AppDir/usr/plugins/sqldrivers libqsqlibase.so libqsqlite.so libqsqlmysql.so libqsqlodbc.so libqsqlpsql.so ``` I'm running the command...
I tried to run my `AppImage` build using following commands: ``` mkdir -p AppDir/usr/lib/ cp -r /usr/lib/x86_64-linux-gnu/nss AppDir/usr/lib/ ./linuxdeploy-x86_64.AppImage --appdir AppDir ./linuxdeploy-plugin-qt-x86_64.AppImage --appdir AppDir ./linuxdeploy-x86_64.AppImage --appdir AppDir --output appimage ```...
I hope this is the right place to file this problem, the App will not run unless I copy QtWebEngineProcess and the resource folder into the bin folder, so it...
The build machine is Xubuntu 20.04. The test machine is Debian Unstable (sid) with XFCE. On the build machine I have custom builds of Qt6, boost, openssl. When I package...
Resolves #88, Add the feature to allow to chose platform plugins from environment variable.
This issue relates to https://github.com/openscad/openscad/issues/3523 where the AppImage crashes upon activating a File (Open/Save) Dialog. OpenSCAD is a Qt5 app, but I think this error mainly applies to some GTK-based...
I am working with the project at https://github.com/jh3010-qt-questions/HelloWorld My goal is to have linuxdeploy, with the qt plugin, create an AppImage that can be launched by a systemd service on...
EXTRA_QT_PLUGINS uses `;` as separator, the problem is that cmake breaks it with spaces when using it. `EXTRA_QT_PLUGINS=multimedia;svg` turns into `EXTRA_QT_PLUGINS=multimedia svg` with or without double quotes or single quotes....