firemonkey.dpr 270 B

12345678910111213141516171819
  1. program firemonkey;
  2. uses
  3. FMX.Forms,
  4. ceflib,
  5. main in 'main.pas' {MainForm};
  6. {$R *.res}
  7. begin
  8. CefSingleProcess := False;
  9. if not CefLoadLibDefault then
  10. Exit;
  11. Application.Initialize;
  12. Application.CreateForm(TMainForm, MainForm);
  13. Application.Run;
  14. end.