source: trunk/Compiler/Modules/PHP/TargetPHP.pas

Last change on this file was 77, checked in by chronos, 6 months ago
  • Modified: Compiler targets moved into modules.
File size: 291 bytes
Line 
1unit TargetPHP;
2
3interface
4
5uses
6 Classes, SysUtils, Target;
7
8type
9
10 { TTargetPHP }
11
12 TTargetPHP = class(TTarget)
13 constructor Create; override;
14 end;
15
16
17implementation
18
19{ TTargetPHP }
20
21constructor TTargetPHP.Create;
22begin
23 inherited;
24 SysName := 'PHP';
25 Name := 'PHP';
26end;
27
28end.
29
Note: See TracBrowser for help on using the repository browser.