Ignore:
Timestamp:
Mar 4, 2022, 10:57:08 PM (2 years ago)
Author:
chronos
Message:
  • Added: Compile multiple action for compilation of code with mutliple compilers at once.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Target/UTargetFPC.pas

    r126 r133  
    2828begin
    2929  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];
    3434  {$IFDEF WINDOWS}
    3535  CompiledExtension := '.exe';
     
    3838  {$ENDIF}
    3939  {$IFDEF UNIX}
    40   CompiledExtension := '';
     40  FCompiledExtension := '';
    4141  CompilerPath := '/usr/bin/fpc';
    42   RunExtension := '';
     42  FRunExtension := '';
    4343  {$ENDIF}
    4444end;
Note: See TracChangeset for help on using the changeset viewer.