Transferability of built program and libraries.
Hello!
I've got a question about transferability of application that I've built to another computer. How can I do it when there is no Qt libraries on destination machine? Is there any tool to create install wizard or something to make it as simple as possible? I'm writing program for Windows.
thanks in advance
best regards
Tomasz
Re: Transferability of built program and libraries.
You can consider compiling it statically. You can find topics for this - however I usually failed with those. :(
Or, I advise you to download OllyDbg debugger, and it will tell you which DLLs are used and copy them into the same directory and pack them into one zip file for distribution.
Or, you can browse for some info how to deploy it in a form of installation wizard. (I don't know about it yet, but you can look around here: http://www.qtcentre.org/forums/5-Ins...and-Deployment)
Re: Transferability of built program and libraries.
You can also use something like www.dependencywalker.com
You can identify the Qt DLLs easily, please you'll need the usual libgcc, ming and others (such as imageformats if you use them, etc)