Set of compiler modes
Source position: fpmkunit.pp line 174
type TCompilerModes = set of ( |
||
cmFPC, |
|
Standard Free Pascal mode |
cmTP, |
|
Turbo Pascal compatibility mode |
cmObjFPC, |
|
Object Pascal mode with object-oriented features |
cmDelphi, |
|
Delphi compatibility mode |
cmMacPas, |
|
Macintosh Pascal compatibility mode |
cmDelphiUnicode |
|
Delphi Unicode compatibility mode |
); |
TCompilerModes is a set type that can contain multiple TCompilerMode values, allowing build configurations to specify which compiler language modes should be supported or used. This enables flexible language compatibility settings for different parts of a package build process.