lazarus/tools/debugserver/debugserver.lpr

23 lines
431 B
ObjectPascal

program debugserver;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, frmmain, frmOptions
{ you can add units after this };
{$R *.res}
begin
Application.Scaled:=True;
Application.Title:='FPC/Lazarus debug message server';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.