Compiler Option: -include
Documentation
Include a header file on each source compiledSyntax
-include < include file >
Parameters
include fileThe header file name with extension, and optionally a path, to include.
Description
The
To include the file header.bi when processing file1.bas and file2.bas, type,
-include option has the effect of adding an #include preprocessor directive to the very beginning of each source file before processing it. When used multiple times, the files will be included in the order they are listed on the command-line.To include the file header.bi when processing file1.bas and file2.bas, type,
fbc -include header.bi file1.bas file2.basSee also