probonopd / linuxdeployqt

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
Other
2.22k stars 414 forks source link

Parallel deployment #604

Closed fwren closed 7 months ago

fwren commented 7 months ago

If my project needs to deploy multiple programs, whether linuxdeployqt supports parallel deployment

probonopd commented 7 months ago

As in

   -executable=<path>       : Let the given executable use the deployed libraries
                              too

?

fwren commented 7 months ago

It means that if I use the command

    linuxdeploqt ./app1 -executable=./app2 -excutable=./app3

Will the app1 app2 app3 related dependent library be packed and deployed?

probonopd commented 7 months ago

Exactly.

fwren commented 7 months ago

Okay, thank you, I haven’t tried this option before