Debugger: move some units to IdeDebugger package

This commit is contained in:
Martin 2022-01-09 15:31:29 +01:00
parent 7642aaff78
commit 82d1e129a0
5 changed files with 14 additions and 2 deletions

View File

@ -25,6 +25,18 @@
<Type Value="Main Unit"/>
<UnitName Value="idedebuggerpackage"/>
</Item>
<Item>
<Filename Value="debugger.pp"/>
<UnitName Value="Debugger"/>
</Item>
<Item>
<Filename Value="processdebugger.pp"/>
<UnitName Value="ProcessDebugger"/>
</Item>
<Item>
<Filename Value="processlist.pas"/>
<UnitName Value="ProcessList"/>
</Item>
</Files>
<RequiredPkgs>
<Item>

View File

@ -2,13 +2,13 @@
This source is only used to compile and install the package.
}
unit IdeDebuggerPackage;
unit idedebuggerpackage;
{$warn 5023 off : no warning about unused units}
interface
uses
IdeDebuggerBase, LazarusPackageIntf;
IdeDebuggerBase, Debugger, ProcessDebugger, ProcessList, LazarusPackageIntf;
implementation