Qt cross-platform development? -
I have a little question about running Qt build apps on different operating systems. As a normal user, do I have to install QT Framework to run Qt Apps? I mean I have created a QT App using Windows, then I've built a build for Linux. Do I have to install QT Framework on Linux PC InDER to run that app? Or the App Installer is a way to package all the necessary libraries.
Best Relationship
You need to deliver dynamic libers with your application As mentioned here:
Since the QT system is not a library, it has to be redistributed with your application; To redistribute run-time of the libraries used by the minimum application. Using stable linking, however, has been compiled into Qt run-time executable.
Comments
Post a Comment