lazarus/ide/packages/idedebugger/idedebuggerpackage.pas

22 lines
374 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit IdeDebuggerPackage;
{$warn 5023 off : no warning about unused units}
interface
uses
IdeDebuggerBase, LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('IdeDebugger', @Register);
end.