-AddIncl: Additional Include File

Group

INPUT

Scope

Compilation Unit

Syntax
-AddIncl"<fileName>" 
Arguments

<fileName>: name of file to include

Default

None

Defines

None

Pragmas

None

Description

This option includes the specified file at the beginning of the compilation unit. It has the same effect as writing the file at the beginning of the compilation unit using double quotes (".."):

#include "my headerfile.h"

Refer the following listing for the -AddIncl compiler option syntax to include the above header file.

Listing: Syntax Example for Including a Header File
-AddIncl"my headerfile.h"


See also

-I: Include File Path compiler option