├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── ci ├── build-in-docker.sh ├── build.sh ├── docker │ ├── Dockerfile │ ├── install-static-binutils.sh │ └── install-static-patchelf.sh └── test.sh ├── lib └── CMakeLists.txt ├── resources ├── linuxdeploy-plugin-qt.desktop └── linuxdeploy-plugin-qt.svg ├── src ├── CMakeLists.txt ├── deployers │ ├── BasicPluginsDeployer.cpp │ ├── BasicPluginsDeployer.h │ ├── BearerPluginsDeployer.cpp │ ├── BearerPluginsDeployer.h │ ├── CMakeLists.txt │ ├── GamepadPluginsDeployer.cpp │ ├── GamepadPluginsDeployer.h │ ├── LocationPluginsDeployer.cpp │ ├── LocationPluginsDeployer.h │ ├── Multimedia5PluginsDeployer.cpp │ ├── Multimedia5PluginsDeployer.h │ ├── Multimedia6PluginsDeployer.cpp │ ├── Multimedia6PluginsDeployer.h │ ├── PlatformPluginsDeployer.cpp │ ├── PlatformPluginsDeployer.h │ ├── PluginsDeployer.cpp │ ├── PluginsDeployer.h │ ├── PluginsDeployerFactory.cpp │ ├── PluginsDeployerFactory.h │ ├── PositioningPluginsDeployer.cpp │ ├── PositioningPluginsDeployer.h │ ├── PrintSupportPluginsDeployer.cpp │ ├── PrintSupportPluginsDeployer.h │ ├── QmlPluginsDeployer.cpp │ ├── QmlPluginsDeployer.h │ ├── Qt3DPluginsDeployer.cpp │ ├── Qt3DPluginsDeployer.h │ ├── SqlPluginsDeployer.cpp │ ├── SqlPluginsDeployer.h │ ├── SvgPluginsDeployer.cpp │ ├── SvgPluginsDeployer.h │ ├── TextToSpeechPluginsDeployer.cpp │ ├── TextToSpeechPluginsDeployer.h │ ├── TlsBackendsDeployer.cpp │ ├── TlsBackendsDeployer.h │ ├── WaylandcompositorPluginsDeployer.cpp │ ├── WaylandcompositorPluginsDeployer.h │ ├── WebEnginePluginsDeployer.cpp │ ├── WebEnginePluginsDeployer.h │ ├── XcbglIntegrationPluginsDeployer.cpp │ └── XcbglIntegrationPluginsDeployer.h ├── deployment.h ├── main.cpp ├── qml.cpp ├── qml.h ├── qt-modules.h ├── util.cpp └── util.h └── tests ├── CMakeLists.txt ├── build_appimages.sh ├── data ├── qml_module │ └── qmldir └── qml_project │ └── file.qml ├── test_deploy_qml.cpp └── test_main.cpp /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/README.md -------------------------------------------------------------------------------- /ci/build-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/build-in-docker.sh -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/docker/Dockerfile -------------------------------------------------------------------------------- /ci/docker/install-static-binutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/docker/install-static-binutils.sh -------------------------------------------------------------------------------- /ci/docker/install-static-patchelf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/docker/install-static-patchelf.sh -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/ci/test.sh -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(linuxdeploy EXCLUDE_FROM_ALL) 2 | -------------------------------------------------------------------------------- /resources/linuxdeploy-plugin-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/resources/linuxdeploy-plugin-qt.desktop -------------------------------------------------------------------------------- /resources/linuxdeploy-plugin-qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/resources/linuxdeploy-plugin-qt.svg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/deployers/BasicPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/BasicPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/BasicPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/BasicPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/BearerPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/BearerPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/BearerPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/BearerPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/CMakeLists.txt -------------------------------------------------------------------------------- /src/deployers/GamepadPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/GamepadPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/GamepadPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/GamepadPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/LocationPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/LocationPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/LocationPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/LocationPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/Multimedia5PluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Multimedia5PluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/Multimedia5PluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Multimedia5PluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/Multimedia6PluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Multimedia6PluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/Multimedia6PluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Multimedia6PluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/PlatformPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PlatformPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/PlatformPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PlatformPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/PluginsDeployer.cpp: -------------------------------------------------------------------------------- 1 | #include "PluginsDeployer.h" 2 | -------------------------------------------------------------------------------- /src/deployers/PluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/PluginsDeployerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PluginsDeployerFactory.cpp -------------------------------------------------------------------------------- /src/deployers/PluginsDeployerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PluginsDeployerFactory.h -------------------------------------------------------------------------------- /src/deployers/PositioningPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PositioningPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/PositioningPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PositioningPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/PrintSupportPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PrintSupportPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/PrintSupportPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/PrintSupportPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/QmlPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/QmlPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/QmlPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/QmlPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/Qt3DPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Qt3DPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/Qt3DPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/Qt3DPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/SqlPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/SqlPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/SqlPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/SqlPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/SvgPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/SvgPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/SvgPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/SvgPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/TextToSpeechPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/TextToSpeechPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/TextToSpeechPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/TextToSpeechPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/TlsBackendsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/TlsBackendsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/TlsBackendsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/TlsBackendsDeployer.h -------------------------------------------------------------------------------- /src/deployers/WaylandcompositorPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/WaylandcompositorPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/WaylandcompositorPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/WaylandcompositorPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/WebEnginePluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/WebEnginePluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/WebEnginePluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/WebEnginePluginsDeployer.h -------------------------------------------------------------------------------- /src/deployers/XcbglIntegrationPluginsDeployer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/XcbglIntegrationPluginsDeployer.cpp -------------------------------------------------------------------------------- /src/deployers/XcbglIntegrationPluginsDeployer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployers/XcbglIntegrationPluginsDeployer.h -------------------------------------------------------------------------------- /src/deployment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/deployment.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/qml.cpp -------------------------------------------------------------------------------- /src/qml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/qml.h -------------------------------------------------------------------------------- /src/qt-modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/qt-modules.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/src/util.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/build_appimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/build_appimages.sh -------------------------------------------------------------------------------- /tests/data/qml_module/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/data/qml_module/qmldir -------------------------------------------------------------------------------- /tests/data/qml_project/file.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/data/qml_project/file.qml -------------------------------------------------------------------------------- /tests/test_deploy_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/test_deploy_qml.cpp -------------------------------------------------------------------------------- /tests/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-qt/HEAD/tests/test_main.cpp --------------------------------------------------------------------------------