I am moving from Netbeans to Eclipse (on Ubuntu 12.0.4). I have a C application that consists of several sub projects which are libraries (shared and static), as well as stand alone executables.
I can't figure out how to create a 'parent' project foo
, which contains component projects
- foobar
- foofoo
- barfoo
- barbar
Ideally, I want all the 'component projects' to be created under the folder foo
, so that I have a directory structure like this:
- /path/to/foo/foobar/ (contains foobar project files)
- /path/to/foo/foofoo/ (contains foofoo project files)
- /path/to/foo/barfoo/ (contains barfoo project files)
- /path/to/foo/barbar/ (contains barbar project files)
Does anyone know how I can achieve this structure using Eclipse as IDE (with CDT)?
Last but not the least, I intend to create my C modules using the Autotools option. Will the generated files for Autotools be automatically updated as I add new header/source to a module - or do I need to manually maintain the Autotool files?