hi luke, On Wed, Sep 23, 2009 at 03:36:28PM +1000, Luke Krasnoff wrote: > Could someone explain how to configure the Qt Creator .pro file to copy the > dependent dlls into a directory with the program executable. > if that's supposed to happen during the install step, then it should be quite easy. if it is supposed to happen during the build step, you'll have to resort to Utter Black Magic. the share/ directory in the qtcreator sources has examples of both.
> It makes sense for qmake to get the dependent dlls, as qmake knows > what dlls it used to bind with the exe. > the dlls might have dependencies which qmake knows nothing about. so in the end it is the task of a post-build dependency tracker to find out everything that's needed (on linux that would be ldd, on windows there is dependencywalker (dunno whether it has a textual output)). _______________________________________________ Qt-creator mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-creator
