diff -r 000000000000 -r 89d6a7a84779 Symbian3/SDK/Source/GUID-201E6D4C-5F0F-5AA2-BC79-91E3C62C8971.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-201E6D4C-5F0F-5AA2-BC79-91E3C62C8971.dita Thu Jan 21 18:18:20 2010 +0000 @@ -0,0 +1,14 @@ + + + + + +How to write a meta file

A meta file is an additional information file associated with each template extension makefile. It is used to set values to attributes to specify the build platform, makefile type and default option values for the extension. The meta file name is same as that of the associated template extension makefile, except the .mk suffix is replaced with .meta.

The following provides a step-by-step explanation to write a meta file:

  1. Specify whether the makefile is of type gnumake (GCC make format) or nmake (Microsoft make format) using the keyword makefile. It is recommended to use gnumake, as most of the templates are based on GNU make format. The value nmake is not recommended as use of nmake is deprecated.

  2. Specify the platform using the keyword platform which is optional. it is useful to specify the platform, if you want to build for a specific platform such as WINSCW, ARMV5 and so on.

  3. Specify the default values for options specific to the extension, using the keyword option which is optional. These default values can be changed in the bld.inf file within the START + EXTENSION ... END block. For more information on START + EXTENSION, refer to prj_extensions.

For more information on meta file syntax, refer to Meta Files.

\ No newline at end of file