lazarus/components/anchordocking/minide/miniide1.lpr
mattias 9cf9902754 moved anchordocking to components
git-svn-id: trunk@36005 -
2012-03-14 19:24:11 +00:00

21 lines
337 B
ObjectPascal

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