PDA

View Full Version : Distributing my app



been_1990
21st September 2010, 03:16
How can I reduce the size of the DLL's needed for my app to work? Or require less?

squidge
21st September 2010, 08:02
1) Recompile them with parts you don't need removed
2) Compress them

been_1990
21st September 2010, 11:30
I removed the QtGUI include, using QtCore instead. I seemed to have an issue but it's working now. Thanks for the help. Now it's less that 13mb. (before it was around 200mb...).

tbscope
21st September 2010, 11:35
Debug and non debug. One contains debugging information like function names, parameter names etc... The other doesn't.

marcvanriet
21st September 2010, 11:56
Maybe that's one for the FAQ :

never include the DLL's that end with 'd' in your distribution. If you need those, it means you have a debug build and not a release build.

Regards,
Marc

wysota
21st September 2010, 12:45
And what would the question be for that one?

squidge
21st September 2010, 13:18
"My DLLs combined are around 200MB, how can I shrink them down in size?"

"Use the release versions, not the debug ones. Debug ones end in 'd'."

been_1990
21st September 2010, 13:45
Thanks guys..

tbscope
21st September 2010, 15:11
been_1990,

Can you please not edit your posts completely in the future?
Now my response looks very out of place.

Thanks.