mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-08 16:27:26 +01:00
29 lines
842 B
ObjectPascal
29 lines
842 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, Debugger, ProcessDebugger, ProcessList, DebuggerTreeView,
|
|
IdeDebuggerUtils, IdeDebuggerWatchResult, IdeDebuggerWatchResPrinter,
|
|
IdeDebuggerWatchResUtils, ArrayNavigationFrame, IdeDebuggerStringConstants,
|
|
IdeDebuggerBackendValueConv, IdeDbgValueConverterSettingsFrame,
|
|
IdeDebugger_ValConv_Options, IdeDebuggerOpts, IdeDebuggerWatchResultJSon,
|
|
WatchInspectToolbar, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('IdeDebugger_ValConv_Options',
|
|
@IdeDebugger_ValConv_Options.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('IdeDebugger', @Register);
|
|
end.
|