You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
377 B

  1. program SimpleFreeType;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, uMainForm
  9. { you can add units after this };
  10. {$R *.res}
  11. begin
  12. RequireDerivedFormResource := True;
  13. Application.Initialize;
  14. Application.CreateForm(TMainForm, MainForm);
  15. Application.Run;
  16. end.