Changeset 139 for tags/1.2.0/Target


Ignore:
Timestamp:
Mar 5, 2022, 5:32:14 PM (3 years ago)
Author:
chronos
Message:
  • Modified: Version 1.2.0 release related changes.
Location:
tags/1.2.0/Target
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/1.2.0/Target/UTargetC.pas

    r135 r139  
    3737  {$IFDEF WINDOWS}
    3838  CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe';
    39   CompiledExtension := '.exe';
    40   RunExtension := '';
     39  FCompiledExtension := '.exe';
     40  FRunExtension := '';
    4141  {$ENDIF}
    4242  {$IFDEF UNIX}
  • tags/1.2.0/Target/UTargetDelphi.pas

    r133 r139  
    3434  {$IFDEF Windows}
    3535  CompilerPath := 'c:\Program Files\Embarcadero\RAD Studio\9.0\bin\DCC32.EXE';
    36   CompiledExtension := '.exe';
    37   RunExtension := '';
     36  FCompiledExtension := '.exe';
     37  FRunExtension := '';
    3838  {$ENDIF}
    3939end;
  • tags/1.2.0/Target/UTargetFPC.pas

    r133 r139  
    3333  FCapabilities := [tcCompile, tcRun];
    3434  {$IFDEF WINDOWS}
    35   CompiledExtension := '.exe';
     35  FCompiledExtension := '.exe';
    3636  CompilerPath := 'fpc.exe';
    37   RunExtension := '';
     37  FRunExtension := '';
    3838  {$ENDIF}
    3939  {$IFDEF UNIX}
Note: See TracChangeset for help on using the changeset viewer.