another fix for the build system (the module list wasn't

taken from the correct location)

plus a small update in the tutorial to reflect the fact that
we know use the "freetype" directory prefix for header
inclusion
This commit is contained in:
David Turner 2000-05-11 19:06:03 +00:00
parent 2561b24537
commit 8c62a12062
3 changed files with 35 additions and 34 deletions

View File

@ -53,8 +53,8 @@ BASE_ := $(BASE_DIR)$(SEP)
OBJ_ := $(OBJ_DIR)$(SEP)
LIB_ := $(LIB_DIR)$(SEP)
PUBLIC_ := $(TOP)$(SEP)include$(SEP)freetype$(SEP)
INTERNAL_ := $(PUBLIC_)$(SEP)internal$(SEP)
CONFIG_ := $(PUBLIC_)$(SEP)config$(SEP)
INTERNAL_ := $(PUBLIC_)internal$(SEP)
CONFIG_ := $(PUBLIC_)config$(SEP)
# The name of the final library file.

View File

@ -25,7 +25,7 @@
# resides. For now, it is in `config/ftmodule.h'.
#
ifndef FT_MODULE_LIST
FT_MODULE_LIST := $(CONFIG_)ftmodule.h
FT_MODULE_LIST := $(TOP)$(SEP)include$(SEP)freetype$(SEP)config$(SEP)ftmodule.h
endif
# To build the modules list, we invoke the `make_module_list' target.

View File

@ -25,6 +25,9 @@ FreeType 2.0 Tutorial</h1></center>
(<a href="http://www.freetype.org">www.freetype.org</a>)
</h3></center>
<center>
<table width=650><tr><td>
<p><br>
<hr WIDTH="100%">
<br>&nbsp;
@ -38,17 +41,13 @@ FreeType 2.0 Tutorial</h1></center>
<h3>1. Header files :</h3>
<ul>
You only need to include the public header file named <tt>freetype.h</tt>
in your source code. Depending on how the library was installed on your
system, you might need to use :<p>
To include the main FreeType header file, simply use:<p>
<ul><font color="blue"><tt>
#include &lt;freetype.h&gt;<p>
#include &lt;freetype/freetype.h&gt;<p>
</tt></font></ul>
or
<ul><font color="blue"><tt>
#include &lt;freetype2/freetype.h&gt;<p>
</tt></font></ul>
in your application to include the public interface to FreeType.<p>
in your application code. Note that other files are available in the
FreeType include directory, most of them being included by
<tt>"freetype.h"</tt>. They will be described later in this tutorial.
</ul>
<p><hr><p>
@ -59,7 +58,7 @@ FreeType 2.0 Tutorial</h1></center>
<tt>library</tt>, and call the function <tt>FT_Init_FreeType</tt> as in:
<font color="blue"><pre>
#include &lt;freetype.h&gt;
#include &lt;freetype/freetype.h&gt;
FT_Library library;
@ -640,5 +639,7 @@ FreeType 2.0 Tutorial</h1></center>
</ul>
</ul>
</td></tr></table>
</center>
<p><hr>