Sometimes I'm making new project - new .pro files using:
Qt Code:
  1. qmake-qt4 -project
To copy to clipboard, switch view to plain text mode 
.
When I put all source files in a main directory everything is ok. Now when I moved it to src subdirectory I've got problem with creating project. It creates only one .pro file in main directory. I know I can put there:
Qt Code:
  1. SUBDIRDS = src
To copy to clipboard, switch view to plain text mode 
and make one more .pro file in src with all source files, but can I do it automatically using qmake-qt4 or other tool.
KDevelop makes everything itself, but I think it's implemented in IDE. Am I right or is it there another possibility to do that?