Skip to content

Deploying Linux to Linux

Radhi edited this page Aug 16, 2017 · 5 revisions

If you use regular installation, you can deploy your app by running :

qtdeploy build desktop

or if you use docker images :

qtdeploy -docker build linux

The output of deployment process will be located in folder deploy/linux at your project's root directory :

project-name
└── deploy
    └── linux
        ├── lib/
        ├── linux/
        ├── plugins/
        ├── qml/
        ├── project-name
        └── project-name.sh

You can start your app either by running project-name or project-name.sh. If you use project-name, your app will run using Qt5 libraries that installed by your system package manager, therefore make it looks native in your platform. On the other hand, if you use project-name.sh, your app will run by dynamic linking the included libraries which will use the fusion style.

Clone this wiki locally