Files
lazarus-ccr/applications/fpvviewer/fpvviewer.lpr
sekelsenmat d67eefba96 Implements the new DXF Tokenizer
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1458 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-01-25 14:13:33 +00:00

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