Reputation: 21
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
Upvotes: 2
Views: 3413
Reputation: 2543
In qt you can specify everything on the .pro file.
win32 {
DESTDIR = whatever you want
}
Upvotes: 4