Today I am trying to get 'kQOAuth':http://gitorious.org/kqoauth/kqoauth to run on OSX. ('Yesterday it was Windows':http://developer.qt.nokia.com/forums/viewthread/5976/)
I built it and did make install with this output:
@alis-imac:kqoauth ali$ sudo make install
Password:
cd src/ && make -f Makefile install
rm -f -r '/Users/ali/QtSDK/Desktop/Qt/473/gcc/lib/kqoauth.framework'
cp -f -R '../lib/kqoauth.framework' '/Users/ali/QtSDK/Desktop/Qt/473/gcc/lib/kqoauth.framework'
cp -f '../lib/kqoauth.framework/kqoauth.prl' '/Users/ali/QtSDK/Desktop/Qt/473/gcc/lib/kqoauth.framework/kqoauth.prl'
cp -f /Traktor-Scrobbler/libs/kqoauth/kqoauth.prf /Users/ali/QtSDK/Desktop/Qt/473/gcc//mkspecs/features/
cd examples/ && make -f Makefile install
make[1]: Nothing to be done for install'. cd tests/ && make -f Makefile install cd ut_kqoauth/ && make -f Makefile install make[2]: Nothing to be done forinstall'.
cd ft_kqoauth/ && make -f Makefile install
make[2]: Nothing to be done for `install'.
alis-imac:kqoauth ali$
@
In the header file of your main application, add a line to reference this new dylib: #include mylib.h. Run qmake on your main application project, from the Build menu in Qt Creator. Edit the code of your main application so that you now use this new dynamic library. May 26, 2014 @ousmaneo, I had the same problem.Apparently it was caused by the fact that I didn't run sudo xcodebuild -license before attempting to install python3 (I'm an absolute beginner in the Mac world, but I guess some libraries failed to build because of this).

kQOAuth resides in the subfolder libs/kQOAuth of my project.
I added the osx-part of the example's .pro-file to my .pro-file and adjusted the path:
@macx {
CONFIG -= app_bundle
QMAKE_POST_LINK += install_name_tool -change kqoauth.framework/Versions/0/kqoauth
lib/kqoauth.framework/Versions/0/kqoauth $${TARGET}
}@
Everytime I'm trying to run my project I get this error:
Dyld Library Not Loaded Reason Image Not Found Python
@dyld: Library not loaded: lib/kqoauth.framework/Versions/0/kqoauth
Referenced from: /macbuild/MyProject
Reason: image not found
The program has unexpectedly finished.@
Dyld Library Not Loaded Reason Image Not Found Download
What did I specify wrong?