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.
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 Symbian SDK. The bldmake bldfiles
command uses this to determine which make files to create.
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
.