I have Eclipse 3.2 with CDT 3.1 installed. In C perspective, upon clicking
build action menu item, I want a program, written by me and kept in
workspace, to
execute with the C file that is open in the C/C++ editor as the input.My
Program produces two output files.
Reading the method described in Chapter 6 of "Managed Build System
Extensibility Document"(Help Content -CDT plug-in Developer Guide),I think
what I want is feasible.Whatever gcc uses to compile (ie error
parsers,dependency calculators)
all remain the same. Only instead of gcc, the tool command has to be my
program name.What new Java Classes need I provide? Is there some more
reading material available to clear my understanding of Managed Build
System Extensibility?