mirror of https://gitlab.com/basile.b/dexed.git
22 lines
438 B
Plaintext
22 lines
438 B
Plaintext
program coedit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, ce_widget,
|
|
ce_dmdwrap, ce_common, ce_synmemo, ce_main, ce_messages, ce_editor, ce_projinspect,
|
|
ce_projconf;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TCEMainForm, mainForm);
|
|
Application.Run;
|
|
end.
|
|
|