I am moving from Netbeans to Eclipse (on Ubuntu 12.0.4). I have a C application, which consists of several subprojects, which are libraries (general and static), as well as stand-alone executables.
I can't figure out how to create a “parent” foo project containing project components
Ideally, I want all the “project projects” to be created in the foo folder, so 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 an IDE (with CDT)?
Last but not least, I intend to create my C-modules using the Autotools option. Will the generated files for Autotools automatically update when I add a new header / source to the module - or do I need to manually support Autotool files?
source share