lazarus/components/lazdebuggerfp/lazdebuggerfp.pas
martin 9a0683d7f8 FPGDBMIDebugger: moved to package
git-svn-id: trunk@44111 -
2014-02-17 03:53:56 +00:00

22 lines
384 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit LazDebuggerFp;
interface
uses
FpGdbmiDebugger, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('FpGdbmiDebugger', @FpGdbmiDebugger.Register);
end;
initialization
RegisterPackage('LazDebuggerFp', @Register);
end.