Changeset 26


Ignore:
Timestamp:
Feb 13, 2012, 10:06:52 AM (12 years ago)
Author:
chronos
Message:
  • Modified: Default compilers path.
Location:
trunk/Compiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Compiler/UCompilerDelphi.pas

    r25 r26  
    2727  SourceExtension := '.pas';
    2828  CompiledExtension := '.exe';
     29  {$IFDEF Windows}
     30  CompilerPath := 'c:\Program Files\Embarcadero\RAD Studio\9.0\bin\DCC32.EXE';
     31  {$ENDIF}
    2932end;
    3033
  • trunk/Compiler/UCompilerPHP.pas

    r25 r26  
    2727  Name := 'PHP';
    2828  SourceExtension := '.php';
     29  {$IFDEF Windows}
     30  CompilerPath := 'c:\Program Files\PHP\php.exe';
     31  {$ENDIF}
     32  {$IFDEF Linux}
     33  CompilerPath := '/usr/bin/php';
     34  {$ENDIF}
    2935end;
    3036
Note: See TracChangeset for help on using the changeset viewer.