The bld.inf files are component definition files
used by bldmake to define the abld.bat and make files.
The bld.inf file is stored in the project's group folder.
For more information on the bld.inf file syntax, see bld.inf file syntax.
The HelloWorldBasic bld.inf file is as follows:
PRJ_PLATFORMS DEFAULT PRJ_EXPORTS PRJ_MMPFILES gnumakefile icons_scalable_dc.mk HelloWorldBasic.mmp
The meaning of the commands is as follows:
PRJ_PLATFORMS DEFAULT
The HelloWorldBasic example is built for all the supported platforms
of the S60 C++ SDK. The bldmake bldfiles command uses
this to determine which make files to create.
PRJ_EXPORTS
The HelloWorldBasic example does not export any files. For information
on using PRJ_EXPORTS, see prj_exports.
PRJ_MMPFILES gnumakefile icons_scalable_dc.mk
This keyword calls the make.exe (GCC make utility) on
the SVG-T icon extension make file for this project.
HelloWorldBasic.mmp
The mmp file for this application is HelloWorldBasic.mmp.