My Qt application is showing up with a rather unfriendly name on the Mac OS X menu. The name looks like my_funky_app.
How do I change this to something more likeable?

My Qt application is showing up with a rather unfriendly name on the Mac OS X menu. The name looks like my_funky_app.
How do I change this to something more likeable?

Have an Info.plist and set the CFBundleName as your nice name.
<key>CFBundleName</key> <string>FancyAppName<string> set_target_properties(). In particular, the application/bundle name is set with MACOSX_BUNDLE_BUNDLE_NAME.Change the TARGET line in your .pro file:
TARGET = FancyAppName