Blame lazarus/texture/project1.lpr

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