Record type representing a compilation target
Source position: fpmkunit.pp line 214
type TCompileTarget = record |
||
public |
||
OS: TOS; |
|
Target operating system |
CPU: TCpu; |
|
Target CPU architecture |
Subtarget: string; |
|
Subtarget identifier string |
function Equals(); |
|
Compares two compile targets for equality |
function ToString(); |
|
Converts compile target to string representation |
property AsString: string; [rw] |
|
String representation of the compile target |
|
||
end; |
Record that defines the target platform for compilation, specifying the operating system, CPU architecture, and optional subtarget. Used to identify the specific platform configuration for cross-compilation.