mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-23 19:46:06 +02:00
23 lines
413 B
ObjectPascal
23 lines
413 B
ObjectPascal
program miniide1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, Unit1, Controls, FileUtil
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainIDE, MainIDE);
|
|
if (Paramcount>0) then
|
|
MainIDE.LoadLayout(ParamStrUTF8(1));
|
|
Application.Run;
|
|
end.
|
|
|