Can I separate everything they need (to work on a computer without Qt) along with my executable?
Can I separate everything they need (to work on a computer without Qt) along with my executable?
Deploying an Application on Windows
You are dynamic linking. You need:
- Your application and any DLL components that you have built
- Any Qt DLL your application needs (at least QtCore4.dll, probably QtGui4.dll and others)
- Any Qt plugins your application needs to support image formats, icon formats, database connections etc.
- Any DLL required for your C++ compiler run time
You need to adhere to the terms of the license under which you are using Qt and the LGPL for the components only licensed under those terms.
danilodsp (7th October 2011)
Ok.
Thank you.
About:
"Any Qt plugins your application needs to support image formats, icon formats, database connections etc."
just add .dll of imageformats, icon formats, and other ... ?
Yes, but they need to be in subdirectories, e.g. as in my earlier post
danilodsp (8th October 2011)
yeah,
I finally got it.
It is running on any computer.
Thank you Chris.
I was not copying the subdirectories.
Bookmarks