Builder - Include Files

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:
Program and include file source


will combine to create program:
Program listing


Next Section: Document Tags