source: trunk/Compiler/TranspascalCompiler.pas

Last change on this file was 77, checked in by chronos, 6 months ago
  • Modified: Compiler targets moved into modules.
File size: 798 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit TranspascalCompiler;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 Compiler, SourceCodePascal, Producer, Analyzer, Target, Executor,
12 AnalyzerPascal, ProducerASM8051, TargetASM8051, TargetGCC, ProducerGCC,
13 ProducerDelphi, ModuleDelphi, ModuleInterpretter, ModulePascal, CompilerAPI,
14 ModuleGCC, SourceConvertor, ModuleBrainfuck, ModulePHP, ModuleJava,
15 ModuleASM8051, TargetJava, TargetPHP, ModuleXML, TargetXML, ModuleDynamicC,
16 ProducerDynamicC, TargetNASM, TargetDynamicC, ModuleNASM, LazarusPackageIntf;
17
18implementation
19
20procedure Register;
21begin
22end;
23
24initialization
25 RegisterPackage('TranspascalCompiler', @Register);
26end.
Note: See TracBrowser for help on using the repository browser.