Is it possible in Eclipse to have some kind of packages (sets of projects) when using CDT projects?
We have separated our software in such packages and use VS2005 with .sln files for the Windows parts. At the moment I see only two ways to manage the projects in Eclipse:
- Put all together into a single workspace and loose the package ordering
- Use separate workspaces (one per package) and store my custom key/syntax/... settings in each workspace (and keep them synchronous!)
The main reason for separating the projects is that you do not need to compile (or check if compilation is needed which also takes a while) all base projects if you are working in a depending package.
I would appreciate a third solution without the disadvantages of my two current solutions :-)
Rüdiger