|
Compiler directive.
Within an <MvIFNDEF> block that does not generate code, the compiler still does syntax and logical parsing of the source, such that tags that require end tags (e.g., <MvCALL> and </MvCALL>) are still checked and matched. Attributes
ExampleIn this example, one set of script will be included in the compiled program if the symbolic code SYMBOL is NOT passed on the compiler command line. If SYMBOL is present then and alternate script will be used instead. Example:<MvIFNDEF NAME = "SYMBOL"> ... Script included in the output if SYMBOL is NOT set .... </MvIFNDEF> <MvIFDEF NAME = "SYMBOL"> ... Script included in the output if SYMBOL is set .... </MvIFDEF> The compiler command line instructs the compiler to include the script in the <MvIFDEF> block. Optionally other symbols can be set. Example:mvc -D SYMBOL[-D ANOTHER_SYMBOL] source.mv |