Files
lazarus-ccr/applications/fpvviewer/fpvviewer.lpr

21 lines
403 B
ObjectPascal
Raw Normal View History

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, CoreConRec
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmFPVViewer, frmFPVViewer);
Application.Run;
end.