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
2009-11-20 12:23:47
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
2009-11-20 13:29:21
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
2009-11-20 14:10:52