mirror of https://gitlab.com/basile.b/dexed.git
31 lines
845 B
Plaintext
31 lines
845 B
Plaintext
program dexed;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, anchordockpkg,
|
|
tachartlazaruspkg, u_sharedres, u_dexed_d, u_observer, u_libman,
|
|
u_symstring, u_tools, u_dcd, u_main, u_writableComponent,
|
|
u_inspectors, u_editoroptions, u_dockoptions, u_shortcutseditor, u_mru,
|
|
u_processes, u_dialogs, u_dubprojeditor, u_controls, u_dfmt,
|
|
u_lcldragdrop, u_stringrange, u_dlangmaps, u_projgroup, u_projutils,
|
|
u_d2synpresets, u_dbgitf, u_ddemangle, u_dubproject, LCLVersion,
|
|
u_halstead, u_diff, u_profileviewer, u_semver, u_term, u_simpleget,
|
|
u_makeproject;
|
|
|
|
{$if lcl_fullversion < 2020000}
|
|
{$ERROR Lazarus version >= 2.2 required}
|
|
{$endif}
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|