summaryrefslogtreecommitdiff
path: root/tools/makefont/makefonts.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'tools/makefont/makefonts.lpr')
-rw-r--r--tools/makefont/makefonts.lpr26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/makefont/makefonts.lpr b/tools/makefont/makefonts.lpr
new file mode 100644
index 00000000..c54918ea
--- /dev/null
+++ b/tools/makefont/makefonts.lpr
@@ -0,0 +1,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.
+