I have finished my QT/ArcGIS application and I want to start share it with my users.
Yet I don't get how to do this correctly.
I want to release packages for linux, osx and windows, but settled to getting a linux version released first.
My users haven't got the arcGIS api installed, nor will the ever want to, so I need to ship the API within my package same will most probably be the case for QT.
Now I see that you provide a libEsriRuntimeQt.a with your api, yet after compilling only the .so's are included . Is it possible to replace both the .so files with the single static .a library (and if so, how?)
How do you deal with this normally, I am for sure not the first with this issue yet there is next to nothing to find about this on the internet. How do you provide the shared libs from QT with you application for instance, are you requiring your users to manually download and install QT before they can install your program?
Sorry for the absolute rookie questions but this is the first time I need to build a package with shared objects.