5.2.8 #INCLUDE

Syntax:

#INCLUDE filename

#INCLUDE instructs the compiler to read the contents of lename before continuing to process options in the current le.

This can be useful if you want to have a particular conguration le for a project (or, under linux, in your home directory), but still want to have the global options that are set in a global conguration le.

Example:

#IFDEF LINUX  
  #INCLUDE /etc/fpc.cfg  
#ELSE  
  #IFDEF GO32V2  
    #INCLUDE c:\pp\bin\fpc.cfg  
  #ENDIF  
#ENDIF

This will include /etc/fpc.cfg if you're on a linux machine, and will include c:\pp\bin\fpc.cfg on a dos machine.