JasonGenX
JasonGenX

Reputation: 5434

QT: Change the name of the built executable

Running QT Creator 2.4 on Mac OSX.

How do I change the name of the final .app file generated? It seems it's bound to the name of the .Pro file.

Upvotes: 20

Views: 19082

Answers (2)

Karlson
Karlson

Reputation: 3048

You can open the .pro file and change the Name in the TARGET variable. The executable will be built as that name.

Upvotes: 4

Dave Mateer
Dave Mateer

Reputation: 17946

In your .pro file, use:

TARGET = name_of_application

Upvotes: 40

Related Questions