I m using qmake for building a project of mine. I have been trying to set the DESTIR variable of qmake with a value that depend of the compiler used. Actually, I want that the binary of my project, after builded, be placed in a directory that has the name of the compiler used to build it.
Something like this... My current directory tree for my project is
- Project | - src | - include | - bin | |- binary_file
I wanted it to be like this
- Project | - src | - include | - bin | | - gcc-4.3.4 | | |- binary_file
Can I do this using qmake?