program LibreDevelopStudio; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UCore, ULDModuleProject; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TCore, Core); Core.Init; Application.Run; end.