Allow installation of extra platform plugins by asl · Pull Request #118 · linuxdeploy/linuxdeploy-plugin-qt · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
10 changes: 10 additions & 0 deletions ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,14 @@ pushd linuxdeploy-plugin-qt-examples/QtWidgetsApplication
"$linuxdeploy_bin" --appdir "$PWD"/AppDir --plugin qt --output appimage || exit 1
mv -v *AppImage "$build_dir" || exit 1
popd

mkdir build-platforms
pushd build-platforms
export EXTRA_PLATFORM_PLUGINS="libqoffscreen.so;libqminimal.so"
qmake CONFIG+=release PREFIX=/usr ../QtWidgetsApplication.pro || exit 1
INSTALL_ROOT="$PWD"/AppDir make install || exit 1

env OUTPUT=platforms.AppImage "$linuxdeploy_bin" --appdir "$PWD"/AppDir --plugin qt --output appimage || exit 1
mv -v platforms.AppImage "$build_dir" || exit 1
popd
popd
12 changes: 12 additions & 0 deletions src/deployers/PlatformPluginsDeployer.cpp