views:

183

answers:

1

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?

+1  A: 

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

win32 {
  DESTDIR = whatever you want
}
jose
Thanks, it works! By the way, I want to learn all the keywords used in .pro file, could you do me a favor by recommending some materials?
Thach
http://doc.trolltech.com/4.4/qmake-variable-reference.html. Don't forget to accept this answer if you consider this is the answer you want.
Patrice Bernassola