Files
lazarus-ccr/applications/fpvviewer/fpvviewer.lpr
2011-03-08 14:32:14 +00:00

21 lines
391 B
ObjectPascal

program fpvviewer;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, fpvv_mainform, dxftokentotree, fpvv_drawer, fpvectorialpkg
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmFPVViewer, frmFPVViewer);
Application.Run;
end.