Are there any tool available to create Qt application as debian package
-
Basically, we have lot of Qt dependency libraries(for desktop) which we need to include as part of the executable or as a package on Ubuntu. Are there any way or tool available to define those dependencies, so that i would get included and can be executed on other Ubuntu machine without Qt installed or with minimal Qt packages installed.
-
Ready-made deployment tools for
qmake
andcmake
: https://github.com/milosolutions/mwizardtemplate/tree/master/platforms/linuxOr you can go in the other direction and create AppImage with linuxdeploy, linuxdeployqt, or FlatPak.
-
@JoeCFD said in Are there any tool available to create Qt application as debian package:
cpack in cmake will do it.
It's used in the repo I linked to.
-
Thank you all for the details. Will try all the above mentioned options..