lazarus/components/fpdebug/test/dwarfviewer/dwarfviewer.lpr
martin 3981ff33fd FPDebug: tests
git-svn-id: trunk@43884 -
2014-02-04 23:36:55 +00:00

21 lines
329 B
ObjectPascal

program dwarfviewer;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.