source: trunk/Compiler/Modules/GCC/TargetGCC.pas

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 290 bytes
Line 
1unit TargetGCC;
2
3interface
4
5uses
6 Classes, SysUtils, Target;
7
8type
9
10 { TTargetGCC }
11
12 TTargetGCC = class(TTarget)
13 constructor Create; override;
14 end;
15
16implementation
17
18{ TTargetGCC }
19
20constructor TTargetGCC.Create;
21begin
22 inherited;
23 SysName := 'GCC';
24 Name := 'GCC';
25end;
26
27end.
28
Note: See TracBrowser for help on using the repository browser.