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