qt - Create library archive from dependency walker? -


a little background: creating qt application based on shared library. have distribute same. have quite few dlls share , using tool dependency walker. did complete profiling of qt application , dependency walker rightly identified shaed libraries.

now question: since dependency walker knows path of dlls, there option make bundle asking dependency walker copy dlls folder or so. did research in google , did not find any.?

could kindly please guide me same or there other tool same?

here thoughts , ramblings on subject:

i haven't heard of 1 before, dependency walker list application accesses, , large number of them don't need deployed.

chances there aren't many dependencies. of windows api libraries should not copied.

you may need install 1 of vscred packages, such if built msvs 2010 32 bit binary, need run msvs c++ redistributables 2010 x86 installer on client machine.

but when figuring out how things have in path accessible on new client machine here things keep in mind:

knowing how windows search order helps.

http://msdn.microsoft.com/en-us/library/windows/desktop/ms682586(v=vs.85).aspx#search_order_for_desktop_applications

also knowing how qt finds own libraries , plugins helps.

http://qt-project.org/doc/qt-4.8/deployment-windows.html

besides that, need make own folder structure, , copy dependencies.

nsis installers. there other install systems out there, deploying application. can use 7zip make self extracting zip, , give location dump contents.

hope helps.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -