lazarus/examples/lazfreetype/lazfreetypetest.lpr
2012-03-03 14:42:15 +00:00

20 lines
298 B
ObjectPascal

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