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/UTargetC.pas

    r126 r133  
    3131begin
    3232  inherited;
    33   Name := 'C';
    34   SourceExtension := '.c';
    35   ImageIndex := 23;
    36   Capabilities := [tcCompile, tcRun];
     33  FName := 'C';
     34  FSourceExtension := '.c';
     35  FImageIndex := 23;
     36  FCapabilities := [tcCompile, tcRun];
    3737  {$IFDEF WINDOWS}
    3838  CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe';
     
    4242  {$IFDEF UNIX}
    4343  CompilerPath := '/usr/bin/gcc';
    44   CompiledExtension := '';
    45   RunExtension := '';
     44  FCompiledExtension := '';
     45  FRunExtension := '';
    4646  {$ENDIF}
    4747end;
Note: See TracChangeset for help on using the changeset viewer.