program LibrePaint; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UCore, UGraphic, UProject, UBitStream, UMemory, UFormNew, UFormMain, UColorRGBA8, UColorGray8, UColorGray1, UColorGray4, UColorRGB565 { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TCore, Core); Application.CreateForm(TFormMain, FormMain); Application.CreateForm(TFormNew, FormNew); Application.Run; end.