program CoolDisk; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, tachartlazaruspkg, UFormMain, UFormBenchmark, UFormProject, UProject, UConfig, UBlockMap, UDriveScan, Common, TemplateGenerics, UFormOperation { you can add units after this }; {$R *.res} begin RequireDerivedFormResource:=True; Application.Initialize; Application.CreateForm(TFormMain, FormMain); Application.CreateForm(TFormBenchmark, FormBenchmark); Application.CreateForm(TFormProject, FormProject); Application.CreateForm(TFormOperation, FormOperation); Application.Run; end.