So I'm having issues with macdeployqt. These are a few of the errors being thrown at me:
Qt Code:
  1. ...ERROR: file copy failed from "/Developer/Applications/Qt/plugins/accessible/libqtaccessiblewidgets.dylib"...
  2. ...ERROR: file copy failed from "/Developer/Applications/Qt/plugins/bearer/libqgenericbearer.dylib"...
  3. ...WARNING: To make sure the plugins are loaded from the correct location,
  4. WARNING: please make sure qt.conf contains the following lines:
  5. WARNING: [Paths]
  6. WARNING: Plugins = PlugIns...
To copy to clipboard, switch view to plain text mode 
From Googling the heck out of this I found a few people having issues with macdeployqt and XCode 3.1, something about Qt using XCode 3.2 Cocoa binaries. Could this be the problem?


And specifically this error for an 3rd party lib:
Qt Code:
  1. ...ERROR: no file at "/lib/libfmodexL.dylib"...
To copy to clipboard, switch view to plain text mode 
I'm not sure why it looks in this location because in the .pro file I state:
Qt Code:
  1. LIBS += \
  2. "/Developer/FMOD Programmers API Mac/api/lib/libfmodex.dylib"
To copy to clipboard, switch view to plain text mode 
I'm assuming I need to run a separate script to manually copy over this 3rd party lib.

Any suggestions would be greatly appreciated.