From d1aba12f6704c71f0a84cc6ae7ab2963ade7b408 Mon Sep 17 00:00:00 2001 From: Graeme Geldenhuys Date: Sat, 3 May 2014 13:50:35 +0100 Subject: pdf reporting: makefont tool for *.fnt file generation See the readme.txt file for more details --- tools/makefont/makefonts.lpr | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tools/makefont/makefonts.lpr (limited to 'tools/makefont/makefonts.lpr') 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. + -- cgit v1.2.3-70-g09d2