Blame lazarus/pathfinder/project1.lpr

ad5f6a
program project1;
ad5f6a
ad5f6a
{$mode objfpc}{$H+}
ad5f6a
ad5f6a
uses
ad5f6a
  {$IFDEF UNIX}{$IFDEF UseCThreads}
ad5f6a
  cthreads,
ad5f6a
  {$ENDIF}{$ENDIF}
ad5f6a
  Interfaces, // this includes the LCL widgetset
ad5f6a
  Forms, Unit1
ad5f6a
  { you can add units after this };
ad5f6a
ad5f6a
{$R *.res}
ad5f6a
ad5f6a
begin
ad5f6a
  RequireDerivedFormResource:=True;
ad5f6a
  Application.Initialize;
ad5f6a
  Application.CreateForm(TForm1, Form1);
ad5f6a
  Application.Run;
ad5f6a
end.
ad5f6a