The builder has the ability to process '#include' statements in source files. The statement must be at the beginning of a line and be the only statement on the line. The contents of the include file will replace the line in the source file.
The format of the line is:
#include <IncludeFile>where <IncludeFile> is a relative path to the include file based on the source directory of the project.
The builder will allow up to 50 include files for each source file; this includes any nested include files.
The following program file and include file:
will combine to create program:
Next Section: Document Tags