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?
You can go to the Designer in Qt Creator and change the title of the object in settings,which are on the right side.
To configure the Qt library for your machine type, run the ./configure script in the package directory. By default, Qt is configured for installation in the /usr/local/Trolltech/Qt-4.8. 5 directory, but this can be changed by using the -prefix option. Type ./configure -help to get a list of all available options.
Have an Info.plist and set the CFBundleName as your nice name.
<key>CFBundleName</key>
<string>FancyAppName<string>
Change the TARGET line in your .pro file:
TARGET = FancyAppName
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With