Changeset 133 for trunk/Target/UTargetFPC.pas
- Timestamp:
- Mar 4, 2022, 10:57:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetFPC.pas
r126 r133 28 28 begin 29 29 inherited; 30 Name := 'FPC';31 SourceExtension := '.pas';32 ImageIndex := 22;33 Capabilities := [tcCompile, tcRun];30 FName := 'FPC'; 31 FSourceExtension := '.pas'; 32 FImageIndex := 22; 33 FCapabilities := [tcCompile, tcRun]; 34 34 {$IFDEF WINDOWS} 35 35 CompiledExtension := '.exe'; … … 38 38 {$ENDIF} 39 39 {$IFDEF UNIX} 40 CompiledExtension := '';40 FCompiledExtension := ''; 41 41 CompilerPath := '/usr/bin/fpc'; 42 RunExtension := '';42 FRunExtension := ''; 43 43 {$ENDIF} 44 44 end;
Note:
See TracChangeset
for help on using the changeset viewer.