FloatLCL.lpr 387 B

12345678910111213141516171819202122
  1. program FloatLCL;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}
  5. cthreads,
  6. {$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Fresnel, // this includes the Fresnel-LCL widgetset
  9. Forms, MainUnit;
  10. {$R *.res}
  11. begin
  12. RequireDerivedFormResource:=True;
  13. Application.Scaled:=True;
  14. Application.Initialize;
  15. Application.CreateForm(TMainForm, MainForm);
  16. Application.Run;
  17. end.