If by project you mean Qt *.pro projects, then yes you can do this, but your top level project needs to be a Qt subdirs project. You would organize your projects like this:
application (subdirs project)
- subproject (Qt subproject that includes a .pro and builds your dynamic or static library, tools, etc)
- src (Qt project that includes a .pro and builds your application, etc)
You can even nest subdir projects if needed:
application (subdirs project)
- libraries (subdirs project)
- library1 (Qt dynamic library project, etc)
- library2 (Qt static library project, etc)
- src (your app, etc)
Hope that helps.
Bookmarks