summaryrefslogtreecommitdiff
path: root/tools/makefont/makefonts.lpr
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2014-08-20 02:11:13 +0100
committerGraeme Geldenhuys <graemeg@gmail.com>2014-08-20 02:11:13 +0100
commitc8acc2c1666015daeb3038c838e5018c0ecd8903 (patch)
tree5ad2edaf0e5fb6be146491226dca4d915333d80d /tools/makefont/makefonts.lpr
parentc45010b6370b50f8e6192ddb7dc3d7762c8c29f7 (diff)
parentd0d8573b046e5020d05c86a970d303084de19b7d (diff)
downloadfpGUI-c8acc2c1666015daeb3038c838e5018c0ecd8903.tar.xz
Merge branch 'release-1.2' into master
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.
+