parent
1ff902c8cd
commit
3c711454e2
6 changed files with 1741 additions and 29 deletions
@ -0,0 +1,33 @@ |
||||
Microsoft Visual Studio Solution File, Format Version 8.00 |
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "freetype", "freetype.vcproj", "{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}" |
||||
ProjectSection(ProjectDependencies) = postProject |
||||
EndProjectSection |
||||
EndProject |
||||
Global |
||||
GlobalSection(SolutionConfiguration) = preSolution |
||||
Debug = Debug |
||||
Debug Multithreaded = Debug Multithreaded |
||||
Debug Singlethreaded = Debug Singlethreaded |
||||
Release = Release |
||||
Release Multithreaded = Release Multithreaded |
||||
Release Singlethreaded = Release Singlethreaded |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfiguration) = postSolution |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug.ActiveCfg = Debug|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug.Build.0 = Debug|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Multithreaded.ActiveCfg = Debug Multithreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Multithreaded.Build.0 = Debug Multithreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Singlethreaded.ActiveCfg = Debug Singlethreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Debug Singlethreaded.Build.0 = Debug Singlethreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release.ActiveCfg = Release|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release.Build.0 = Release|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release Multithreaded.ActiveCfg = Release Multithreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release Multithreaded.Build.0 = Release Multithreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release Singlethreaded.ActiveCfg = Release Singlethreaded|Win32 |
||||
{78B079BD-9FC7-4B9E-B4A6-96DA0F00248B}.Release Singlethreaded.Build.0 = Release Singlethreaded|Win32 |
||||
EndGlobalSection |
||||
GlobalSection(ExtensibilityGlobals) = postSolution |
||||
EndGlobalSection |
||||
GlobalSection(ExtensibilityAddIns) = postSolution |
||||
EndGlobalSection |
||||
EndGlobal |
File diff suppressed because it is too large
Load Diff
@ -1,36 +1,38 @@ |
||||
<html> |
||||
<header> |
||||
<title>FreeType 2 Project Files for Visual C++</title> |
||||
<title> |
||||
FreeType 2 Project Files for Visual C++ and VS.NET 2003 |
||||
</title> |
||||
</header> |
||||
<body> |
||||
|
||||
<h1>FreeType 2 Project Files for Visual C++</h1> |
||||
<h1> |
||||
FreeType 2 Project Files for Visual C++ and VS.NET 2003 |
||||
</h1> |
||||
|
||||
<p>This directory contains a project file for Visual C++, named |
||||
<tt>freetype.dsp</tt>. It will compile the following libraries |
||||
from the FreeType 2.1.4 sources:</p> |
||||
<p>This directory contains a project files for Visual C++, named |
||||
<tt>freetype.dsp</tt>, and Visual Studio, called <tt>freetype.sln</tt>. It |
||||
will compile the following libraries from the FreeType 2.1.8 sources:</p> |
||||
|
||||
<ul> |
||||
<pre> |
||||
freetype214.lib - release build; single threaded |
||||
freetype214_D.lib - debug build; single threaded |
||||
freetype214MT.lib - release build; multi-threaded |
||||
freetype214MT_D.lib - debug build; multi-threaded |
||||
</pre> |
||||
freetype218.lib - release build; single threaded |
||||
freetype218_D.lib - debug build; single threaded |
||||
freetype218MT.lib - release build; multi-threaded |
||||
freetype218MT_D.lib - debug build; multi-threaded</pre> |
||||
</ul> |
||||
|
||||
<p>Be sure to extract the files with the Windows (CR+LF) line endings. |
||||
ZIP archives are already stored this way, so no further step is required. |
||||
If you use some .tar.*z archives, be sure to configure your extracting |
||||
tool to convert the line endings. For example, with |
||||
<a href="http://www.winzip.com">WinZip</a>, you should set the "TAR file |
||||
smart CR/LF Conversion" option on. Alternatively, you may consider using |
||||
the "unix2dos" or "u2d" utilities that are floating around, which |
||||
specifically deal with this particular problem. |
||||
<p>Be sure to extract the files with the Windows (CR+LF) line endings. ZIP |
||||
archives are already stored this way, so no further step is required. If |
||||
you use some <tt>.tar.*z</tt> archives, be sure to configure your extracting |
||||
tool to convert the line endings. For example, with <a |
||||
href="http://www.winzip.com">WinZip</a>, you should activate the <it>TAR |
||||
file smart CR/LF Conversion</it> option. Alternatively, you may consider |
||||
using the <tt>unix2dos</tt> or <tt>u2d</tt> utilities that are floating |
||||
around, which specifically deal with this particular problem. |
||||
|
||||
<p>Build directories are placed in the top-level "objs" directory</p> |
||||
|
||||
<p>Enjoy :-)</p> |
||||
<p>Build directories are placed in the top-level <tt>objs</tt> |
||||
directory.</p> |
||||
|
||||
</body> |
||||
</html> |
||||
</html> |
||||
|
Loading…
Reference in new issue