Files
lazarus-ccr/applications/fpvviewer/fpvviewer.lpr
sekelsenmat 3d8de9876b fpvviewer: Starts the contour line code
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2365 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-03-27 07:23:43 +00:00

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