Please help me to find an example explaining how to define a project type.
I am trying to do the following:
In C/C++ perspective I enter a program, this is input file to my program
code( which takes in this input file and produces two output file). This
gets done very well when I do it with a makefile and a Standard Make C
Project.
Now I want the above incorporated in a plug-in so that when I click on
build,
my program code runs using the above mentioned input file.
The Standard Make C Project uses "specsFile" for scannerInfoProvider.Does
my plug-in need something to do if that? Guide me to some example codes
dealing with this sort of thing.