mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 08:13:49 +02:00

+ added .lpi to store dependencies * fixed some compilation errors (15759) git-svn-id: trunk@23962 -
18 lines
265 B
ObjectPascal
18 lines
265 B
ObjectPascal
program debugtest;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
|
|
uses
|
|
Classes, Forms, DebugTestForm, BreakpointsDlg, LocalsDlg,
|
|
Interfaces, Unit1;
|
|
|
|
{$R debugtest.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TDebugTestForm, DebugTestFrm);
|
|
Application.Run;
|
|
end.
|