Need to fix this ASAP(I need to build in release to make file like 20 mb instead of 200 as it's now.)
In release folder it shows this:http://min.us/lmHCMO
Thank you.
Need to fix this ASAP(I need to build in release to make file like 20 mb instead of 200 as it's now.)
In release folder it shows this:http://min.us/lmHCMO
Thank you.
I assume you are using the Qt SDK with its included MingW compiler. Here are the points form the above discussion summarised:
- Deploy the release DLLs (e.g. QtCore4.dll), not the debug DLLs (e.g. QtCored4.dll). This is the most likely reason that your deployment is ridiculously large. A full set of release libraries, which you are unlikely to need all of, is about 40MB.
- Deploy the DLLs that have been built with the same compiler as your executable. This means you should deploy the DLLs found in
(adjust the path as required). This is the most likely cause of your latest problem.
- \Qt\2010.02.1\qt\bin,
- not the ones in \Qt\2010.02.1\bin
- Don't forget to deploy any plugin that your application requires. This is the most likely cause of the next problem you are likely to strike.
The issue of what to deploy and where to put it has been done to death in these forums.
Bookmarks