• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H04-Feb-2009-12,5039,804

doc/H03-May-2022-

include/H04-Feb-2009-4,5222,601

license/H03-May-2022-

src/H03-May-2022-42,34527,132

test/H03-May-2022-7,2635,330

COPYINGH A D21-Jan-200926 21

INSTALLH A D21-Jan-20099.3 KiB237179

Makefile.amH A D28-Jan-20092.1 KiB6342

Makefile.inH A D03-May-202222.7 KiB721624

READMEH A D21-Jan-20091.2 KiB3323

TODOH A D21-Jan-200942 52

aclocal.m4H A D28-Jan-2009305.8 KiB8,8127,891

build.batH A D21-Jan-200930 11

build_d.batH A D21-Jan-200940 11

configureH A D28-Jan-2009567.5 KiB19,42515,157

configure.acH A D29-Jan-20093.5 KiB141117

installed-top.pc.inH A D21-Jan-2009100 65

makefile.vc7H A D03-May-202231.1 KiB811555

makefile.vc8H A D21-Aug-200831.9 KiB815559

silgraphite.pc.inH A D21-Jan-2009130 85

uninstalled-top.pc.inH A D21-Jan-2009157 76

README

1			GRAPHITE ENGINE
2
3The Graphite smart-font engine is the bit that takes a Unicode string, font
4formatting information (features, size, etc.) and a font and returns a set
5of positioned glyphs. Graphite also does more than this, in that it can
6handle cursor tracking and interaction with the application for string
7selection, etc.
8
9In order to interact with the application or system, Graphite is embedded in
10an application. You may want to write a custom font and render backend or use one
11of the provided backends in the wrappers project.
12
13The *nix build system uses autoconf and automake including all the
14conventions of those tools. This includes extended support for debug,
15maintenance mode, etc. See the GNU autotools info pages for the appropriate
16tools for help.
17
18If you have checked this source out of the Graphite Subversion repository or
19a similar version control system you will need to generate the autotools
20scripts and files (configure, Makefile.in etc) to do this run:
21
22    autoreconf --install
23
24Please see INSTALL for information on building
25
26NOTE:
27If you modify any configure.in or Makefile.am file you will need rerun
28autoreconf like so:
29
30    autoreconf
31
32For those changes to affect the configure script and makefiles.
33