Readme for TestFileFont

First, build graphite for your platform, but make sure you enable tracing.

On Linux:

# in trunk/
./autogen.sh
./configure --enable-tracing
make
sudo make install
# you must do the make install as root or with sudo otherwise the configuration of TestFileFont won't work
cd examples/TestFileFont
./autogen.sh
./configure
make
# optional:
sudo make install


On Windows:

# in trunk directory (make sure you have run vcvars32.bat first)
# make sure that the makefile has the /D "TRACING" in CPPFLAGS
nmake -f makefile.vc
cd examples\TestFileFont
nmake -f makefile.vc

You can run the application as:
testGraphiteFontFile /usr/share/fonts/truetype/graphite/padaukg.ttf -codes 1000 102f
This should give a list of the glyphs for the unicode characters U+1000 U+102F using the Padauk font. 
Change the path to the font and the Unicode code points as desired.
For more options run testGraphiteFontFile without arguments.

