I've been developing my QT-based application on Windows without issues for a while now. This evening, I broke out the MacBook Pro to try and get it running on OSX. The project itself builds. However, when launching the app bundle, it fails to load my dyn library.

My project consists of one app project and one shared library project. The app project depends on the library.

I've looking up information online and noticed there are several articles related to otool, and several other utilities. What's the best way to include my custom dyn lib in my app bundle?

Thanks.