summaryrefslogtreecommitdiff
path: root/tools/makefont/makefonts.lpr
blob: c54918ead02ba7851dc625976f5e2163ef02b2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
program makefonts;

{$mode objfpc}{$H+}

uses
  Classes,
  fpg_main, u_main, u_parsettf, u_data ;

{.$R *.res}

procedure MainProc;
begin
fpgApplication.Initialize;
F_MainForm:= TF_MainForm.Create(nil);
try
  F_MainForm.Show;
  fpgApplication.Run;
finally
  F_MainForm.Free;
  end;
end;

begin
MainProc;
end.