I am very confused how to manage bigger project in Qt with .pro files. I have got this directory tree:
Qt Code:
  1. /
  2. /bin - all binary files (.EXE/.DLL)
  3. /lib - all linking libraries (.a/ .lib)
  4. /tmp - temporary
  5. /src - sources
  6. Projects:
  7. /src/Executable/Executable.pro
  8. /src/Library.GUI/Library.GUI.pro
  9. /src/Library.Services/Library.Services.pro
  10. /src/...
To copy to clipboard, switch view to plain text mode 
How to link this projects together with Qt .pro/.pri (projects files) ? Is there some tutorial for it?