Thach
Thach

Reputation: 21

How to set output path in a Qt project

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

Answers (1)

jose
jose

Reputation: 2543

In qt you can specify everything on the .pro file.

win32 {
  DESTDIR = whatever you want
}

Upvotes: 4

Related Questions