source: trunk/Compiler/Modules/DynamicC/TargetDynamicC.pas

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