lazarus/examples/imagelist/project1.lpr
paul 97163a1b59 examples: imagelist - use FPC resources
git-svn-id: trunk@26896 -
2010-07-29 09:16:12 +00:00

21 lines
323 B
ObjectPascal

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