On 09/06/12 07:32, rcyboom wrote: > Hello, > everyone: > I can set the path of output files in the .pro file,which is using: > > DESTDIR = ../../bin > > I down't know how to setting the shadow build path except in the UI interface > of Qt creator,can you help me? > Because I has many projects in a root path. > I want that is a clean directory just contain source and config files. > win7 64bit Home+Qt 4.8 lib for vs+Qt creator 2.4.82 > Thanks!
You can't. But you can build in another directory: mkdir mybuild cd mybuild qmake ../myproject/myproject.pro make That usually works. _______________________________________________ Qt-creator mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qt-creator
