program GenPlaylist; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, clocale, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, UFormMain { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Scaled:=True; Application.Initialize; Application.CreateForm(TFormMain, FormMain); Application.Run; end.