I'm new to QT and I made an app with it and now I want to publish it on GitHub. So I tried to commit the code to GitHub and so that the user wouldn't need to have Qt installed I added an executable that I got by building the project in Qt Creator.
As I tried to get it to run in a virtual machine (Debian) by using
sudo chmod +x myapp
it gave the following error :
./myapp: error while loading shared libraries: libQtPrintSupport.so.6: not open shared object file: no such file or dictionary
how can i fix that error or is there a better way to do it? Would it be an option to add a .zip file?