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