| 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 | 
 | 
|---|
| 5 | unit TranspascalCompiler;
 | 
|---|
| 6 | 
 | 
|---|
| 7 | {$warn 5023 off : no warning about unused units}
 | 
|---|
| 8 | interface
 | 
|---|
| 9 | 
 | 
|---|
| 10 | uses
 | 
|---|
| 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 | 
 | 
|---|
| 18 | implementation
 | 
|---|
| 19 | 
 | 
|---|
| 20 | procedure Register;
 | 
|---|
| 21 | begin
 | 
|---|
| 22 | end;
 | 
|---|
| 23 | 
 | 
|---|
| 24 | initialization
 | 
|---|
| 25 |   RegisterPackage('TranspascalCompiler', @Register);
 | 
|---|
| 26 | end.
 | 
|---|