0

The macdeployqt which comes with Qt SDK 1.1 is broken (it's already files on the Qt bugtracker).

How do I make macdeployqt use the libraries of another Qt-version I installed instead of Qt SDK 1.1?

I couldn't find a bash-environment variable for it.

demonplus
  • 5,613
  • 12
  • 49
  • 68
Hedge
  • 16,142
  • 42
  • 141
  • 246

1 Answers1

1

macdeployqt should deploy Qt libraries which are linked to your binary. Use otool to check what libraries are linked.

To get more control over the deployment of libraries, I ended up rewriting macddeployqt to always deploy/link to my preferred library location.

  • Thank you. I'm interested in your version of macdeployqt. How about uploading it somewhere? – Hedge May 20 '11 at 09:11