views:

9

answers:

0

We are developing a project that has a fair amount of shared 'library' code, and application code specific for each product. We have makefiles for each product, and we have started to set up working sets that show only the files that are pulled in from the common lib code, but doing this by hand is slow and repetitive, and could be hard to maintain as we need to add/remove files from products.

We already have all the paths we need in the makefile, so is there any way to automatically generate a working set based on a makefile? It wouldn't be hard to do with a bit of perl, but this seems like the sort of thing someone should have solved already.

We're using Eclipse Helios CDT, on windows.

Thank you.