lazarus/tools/debugserver/debugserver.lpr
paul 7f5283c33b debugserver: use FPC resources
git-svn-id: trunk@26890 -
2010-07-29 06:42:10 +00:00

22 lines
403 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.Title:='FPC/Lazarus debug message server';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.